I\'m trying to sort by two different columns from two different tables. This is the situtation:
I have 1 table \'shops\' with a column called \'shopy\', an INT colu
yes try this :if you want in descending order
SELECT FROM tableName UNION ALL SELECT FROM tablename ORDER BY DESC
:if you want in ascending order:
SELECT FROM tableName UNION ALL SELECT FROM tablename ORDER BY