If I have a table that (among other columns) has two DATETIME columns, how would I select the most recent date from those two columns.
Example:
Other than case statement, I don't believe so...
Select Case When DateColA > DateColB Then DateColA Else DateColB End MostRecent From Table ...