Okay, here's my problem.  It involves two tables: Teams, Captains.  There is a one to many relationship from Teams to Captains.
Here's the problem every time I create a query to show the teams and list the captains that belong those teams I get double listings or triple listings depending on how many captains each team has.
How do I limit the query to only show the first instance of the captain with a team. I only need to see one captain.
I can't limit by unique values, because technically each combination of team and captain is unique. I've tried grouping by but I don't get anything useful (i'm not sure I'm using it correctly though)
Any suggestions would be much appreciated. Thank you in advance.
 Here's the problem every time I create a query to show the teams and list the captains that belong those teams I get double listings or triple listings depending on how many captains each team has.
How do I limit the query to only show the first instance of the captain with a team. I only need to see one captain.
I can't limit by unique values, because technically each combination of team and captain is unique. I've tried grouping by but I don't get anything useful (i'm not sure I'm using it correctly though)
Any suggestions would be much appreciated. Thank you in advance.