I want to do something like this in SQL Server:
SELECT
pt.quantity AS 'QTY'
,[QTY] * 5
FROM
product pt
But here I am getting error:
Invalid column name ‘QTY’.
Please suggest what could be the issue OR a possible workaround.
Thanks,
Justin Samuel.
i think this will also work
you can try this also