SQL Server Get Custom Column value -
how can get value of column1 @ same time? example code :
select (2+2) column1 , (column1-1) column2
select column1, (column1-1) column2 ( select (2+2) column1 ) t or
select (2+2) column1 , (2 + 2 -1) column2
Comments
Post a Comment