Forum Moderators: open
So I have a certain search I want to do on two tables. The first table has a playerid and player info with that id. The second table has information with the playerid and a certain date they picked. Each playerid can have more than one date, so it's not a unique number in the second table like it is in the first. Now I want to have a SELECT query that joins the two tables, but only gets the players who have picked 2 of the certain dates available.
My problem is that when I do a join I get multiple instances of the player profiles for those 2 different dates if they select both of them. Is there a way to remedy this somehow?
It seems as though I've designed the second table so that it's easy to list off the dates the player has selected, but hard to go the other way around.
Thanks again