I am having difficulty in formulating a relatively simple select statement. I have a member table (parent) which is related to a designation table (child) in which there are multiple related records. I would like to be able to pull the chilren in a single row (record) but am not sure how to accomplish this. Can someone give me a hand with this? Thanks so much in advance...THANKS!
Here is the select statement that I have now, but it pulls a member name each time they have a new designation (example: if a member has several designations, then they end up with two or three records. I would like to have one records with several designation fields).
select Member.Last_Name, Member.First_Name, Member_Designations.Designations
From Member, Member_Designations
Where Member.Member_Number=Member_Designations.Member_Number
Order By Last_Name Asc
Thanks again!!!!
Austin
Here is the select statement that I have now, but it pulls a member name each time they have a new designation (example: if a member has several designations, then they end up with two or three records. I would like to have one records with several designation fields).
select Member.Last_Name, Member.First_Name, Member_Designations.Designations
From Member, Member_Designations
Where Member.Member_Number=Member_Designations.Member_Number
Order By Last_Name Asc
Thanks again!!!!
Austin