comparing queries

  • Thread starter Thread starter Pitlochry1
  • Start date Start date
SELECT f1, f2 FROM table1
UNION
SELECT g1, g2 FROM table2


would return no duplicated pair of fields from the merge of table1 and
table2, given fields. To GET the duplicated pairs, use UNION ALL instead of
UNION.


Vanderghast, Access MVP
 
Back
Top