What is the easiest way to select data from two tables and rather than join them, have them appear as separate rows. Both tables have similar or matching fields and I want t
You could try something like this:
SELECT f1,f2,f3 FROM table1 UNION SELECT f1,f2,f3 FROM table2