Can someone provide answer to this situation?? Suppose I have 2 tables:
Table Books with values Batch_no and Title
Batch_no - Title
1 - A
2 - B
and;
Table Book_Authors with values Batch_no and Author_no
Batch_no - Author_no
1 - 1
1 - 2
1 - 3
2 - 1
How should I merge the values into 1 row which should look like this
Batch_no Author
1 - 1, 2, 3
2 - 1
Any help will be greatly appreciated...Many Thanks!