I have a Table with 2 columns
For example:
column1 column2
12 3
15 5
I need to fix the max value of the 2 columns
A very nice SQL ToolSELECT column1, column2, (CASE WHEN column3 > column4 THEN column3 ELSE column4 END) FROM Table1
http://sqlfiddle.com/
No comments:
Post a Comment