我需要在 SQL 中做一些事情,我现在很困惑!
所以我有这样的事情:
idEvent idService dateCreated
------- --------- -----------
1 1 2012-01-01
2 1 2012-02-02
3 2 2012-01-01
4 2 2012-02-02
idEvent
是自动递增的。
我需要得到的是dateCreated DESC
每个idService
.
所以我需要得到这个结果:
idEvent
-------
2
4