简体   繁体   中英

SQL: Select Multiple Columns with Max() on calculated values

Real basic: I have table T with following data:

ID   StartDate  Term (months)
----------------------
1    10/1/2012   12
2    10/1/2012   24
3    12/1/2012   12

I need to know the ID of the row that has the max end date. I've successfully calculated the end date as select max( DateAdd(month, term, StartDate) from table [this would result in 10/1/2014]

how do i get the ID value and Start Date of the row that contains the max end date?

MS SQL:

SELECT TOP 1 ID, StartDate
FROM T
ORDER BY DateAdd(month, term, StartDate) DESC

MySQL:

SELECT ID, StartDate
FROM T
ORDER BY DateAdd(month, term, StartDate) DESC
LIMIT 1

In case more than one ID has the same extreme "end date" and you need them all, you can try this:

SELECT x.id
FROM (
   SELECT id
        , RANK ( ) OVER ( ORDER BY  DateAdd(month, term, StartDate) DESC) as rn
   FROM T
   ) x
WHERE t.rn = 1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM