Selecting most recent date between two columns

前端 未结 13 1376
再見小時候
再見小時候 2020-12-30 22:15

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:

13条回答
  •  爱一瞬间的悲伤
    2020-12-30 23:10

    Other than case statement, I don't believe so...

      Select Case When DateColA > DateColB Then DateColA 
                  Else DateColB End MostRecent
      From Table ... 
    

提交回复
热议问题