M
mls via AccessMonster.com
I need to combine two tables and get all the PID_NUMBER. Say table 1 has 25
rows of PID's and Table2 has 50 PID's, and I want to combine both tables and
my result should show 75 rows.
Is this possible?
I tried the following query but it's not working..
SELECT PID_NUMBER
FROM [table1] FULL JOIN [Table2] ON [Table1].PID_NUMBER = [Table2].
PID_NUMBER;
Thank you
rows of PID's and Table2 has 50 PID's, and I want to combine both tables and
my result should show 75 rows.
Is this possible?
I tried the following query but it's not working..
SELECT PID_NUMBER
FROM [table1] FULL JOIN [Table2] ON [Table1].PID_NUMBER = [Table2].
PID_NUMBER;
Thank you