Hi,
I need help on this select query. I have two tables joined together so i can retrieve fields from both tables. But i want to output to show all records from Table A eventhough the records don't match the join field from Table B, not only the matching records. Thanks a lot....katie
example:
Table A
ID Name
1 a
2 b
3 c
Table B
ID City
1 d
2 e
Desired Output:
ID Name City
1 a d
2 b e
3 c (leave blank)
Start Free Trial