I have two tables with column name price
I want to order by price from both columns
so if is in first table 100eur and in second is 200eur
I want to order results like this: 200, 100
SELECT
a.price,
b.price
FROM table1 AS a
INNER JOIN table2 AS b ON a.sku = b.sku
ORDER BY ???