How do you return 1 value per row of the max of several columns:
TableName [Number, Date1, Date1, Date3, Cost]
I need to return something like this: [Number, Most Recent Date, Cost]
Query?
|
1
|
How do you return 1 value per row of the max of several columns: TableName [Number, Date1, Date1, Date3, Cost] I need to return something like this: [Number, Most Recent Date, Cost] Query?
|
|||
|
|
|
|
Well, you can use the CASE statement:
|
||
|
|
|
|
There are 3 more methods where UNPIVOT (1) is the fastest by far, followed by Simulated Unpivot (3) which is much slowe than (1) but still faster than (3)
|
|||
|
|
|
|
If you are using SQL Server 2005, you can use the UNPIVOT feature. Here is a complete example:
|
||||
|
|
|
If you're using MySQL, you can use
|
||
|
|
|
Either of the two samples below will work: The second is an add on to lassevk's answer.
|
||
|
|
|
|
I do not understand if you mean you want max of each:
or if you want number and cost of the row with the mostrecentdate
|
||
|
|
|
|
Is this homework? I would use MAX on a CASE to get the maximum of the columns. How many columns are we talking about? Is Number a primary key? |
||
|