码迷,mamicode.com
首页 > 数据库 > 详细

sql 查找最后一条记录

时间:2014-10-20 17:09:13      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:des   style   strong   sp   on   ef   bs   as   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 查找最后一条记录

标签:des   style   strong   sp   on   ef   bs   as   sql   

原文地址:http://www.cnblogs.com/yelongsan/p/4037476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!