I have a column in a table... ColumnA
ColumnA contains positive and negative numbers
What I want to do is insert an expression that basically does the
equivalent of the following excel formula..
If(ColumnA>=0," Use","Ignore")
What should I change the following syntax to?
SELECT *, ColumnA AS Expr1
FROM Table
Regards,
CiarĂ¡n
ColumnA contains positive and negative numbers
What I want to do is insert an expression that basically does the
equivalent of the following excel formula..
If(ColumnA>=0," Use","Ignore")
What should I change the following syntax to?
SELECT *, ColumnA AS Expr1
FROM Table
Regards,
CiarĂ¡n
Comment