Something like:
SELECT *, COLUMN1 = 3, COLUMN2 = 1 FROM TABLE1
However, I would like the order of the columns to be the same as when select only SELECT *
and not add any extra columns like column1
and column2
but replace the existing ones that are included in *
. TABLE1
contains the columns COLUMN1
and COLUMN2
.
Thanks.