Here are the results with UNION, but I also want to know the source table associated with each row:
SELECT City FROM Customers
UNION
SELECT City FROM Suppliers
ORDER BY City;
The actual result of the query is this:
city
572
123
But I'd like this result instead:
city tablet_result
572 Customers
123 Suppliers