I dont want to merge the results into one record, I simply want the same results from both tables to be selected as if they were from one.
From the looks of CONTACT, it appears that it simply joins two fields into one.
For example
TABLE_1
user_id | user_name
1 | BOB
2 | JERRY
3 | TOM
TABLE_2
user_num | username
42 | ANDY
51 | DAVE
64 | BILL
I want to
SELECT one.user_id AS new_user_id, two.user_num AS new_user_id FROM TABLE_1, TABLE_2
and I want the results to be like
new_user_id
1
2
3
42
51
64
The records aren't merged, only the fields. Is this possible?
Thanks again.