I have a table with four columns with different dates.
I want to retrieve a column name with maximum date; can any one help on how to go about that?
|
1
|
I have a table with four columns with different dates. I want to retrieve a column name with maximum date; can any one help on how to go about that? |
||||||
|
|
|
If, on a per row basis, I wanted the latest date in two date coluns, I'd use a case statement:
If I wanted the column name (and I don't know why I'd want that):
If I wanted to deal with more columns, I'd nest more case statements:
Or, better, I could do it like this:
Or (maybe better) I might write a function. Since max is a built-in fuction, I'd write something called maxOf. This is in MySQL's function syntax, your db may use a different syntax, and may use OUT variables instead of returning a value:
|
||
|
|
|
|
I am not very familiar with oracle, so am avoiding SQL Server specific approaches (other than the table variable for sample purposes), but a way to solve the problem as stated would be to create a subquery that unions the four columns and maps column names, another subquery that retrieves the max for the 4 values, and an outer query that returns the joined result. The sample below will return the max for the table, but this could be adjusted to the max for row by modifying the aggregating subquery to group by a row identifier, and then joining on that column as well
|
||
|
|
|
|
Oracle has GREATEST and LEAST
|
||
|
|