How can I rename a single column in a table at select?
select t1.Column as Price, t2.Column as Other_Price
from table1 as t1 INNER JOIN table2 as t2
ON t1.Key = t2.Key
like this ?
SELECT table1.price, table2.price AS 'other_price' ...
select t1.Column as Price, t2.Column as Other_Price
from table1 as t1 INNER JOIN table2 as t2
ON t1.Key = t2.Key
like this ?
SELECT table1.price, table2.price AS 'other_price' ...