carillonator
New member
- Local time
- Today, 14:56
- Joined
- Feb 2, 2010
- Messages
- 3
I want to perform a UNION of two tables, but occasionally the primary key field in each will have the same value while the rest of the row contains different data. In this case I want only the row from table1:
table1
table2
The result I want:
table1
Code:
col1 col2
Frank blue
Debbie red
Code:
col1 col2
George brown
Debbie orange
Code:
col1 col2
Frank blue
Debbie red
George brown