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

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -