首页 > 代码库 > sql 查找最后一条记录
sql 查找最后一条记录
1.通过row
select * from table
where rownum<(select count(*)+1 from table)
minus
select * from table
where rownum<(select count(*) from table)
也可以简化为
select * from table
minus
select * from table
where rownum<(select count(*) from table)
效果是一样的
切记rownum是伪列 只能用<
顺便给你求第X行的通用SQL语句
select * from table where rownum<X+1
minus
select * from table where rownum<X
2.top
select top 1 * from person order by id desc
select top(1) * from table where id=(select max(id) from table)
3.max
select * from table a where a.date in (select max(b.date) from table b where b.id=a.id)
sql 查找最后一条记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。