Here's my problem. I'm trying to get row results where these two tables are combined. I should be able to be do this with joins and unions I just can't seem to get it to work.
table1
recnum
last name
table2
recnum
childname
ordinal
1 to many relationship
sample
Table1
1, Jones
2, Smith
Table2
1,Mary,1
1,John,2
1,Petunia,3
2,Louise,1
2,Sal,2
I need a single SQL command that will give me row results like
Jones, Mary, John, Petunia
Smith, Louise, Sal
Any help appreciated!