有什么更优雅的方法可以做到这一点:
select date from table where id in ( select max(id) from table);
当然有更好的方法…
select date from (select date from table order by id desc) where rownum < 2
假设您的ID是唯一的。
编辑 :使用子查询+ rownum