如何用sql语言查询一个表中的第二条记录!!!!
3个回答
展开全部
(select top 2 * from table) a,(select top 1 * from table) b where a.字段!=b.字段(找个肯定不同的字段)
oracle :select * from (select t.*,rownum as num from table where rownum<=2) where num=2
oracle :select * from (select t.*,rownum as num from table where rownum<=2) where num=2
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT TOP 2 * FROM 表
EXCEPT
SELECT TOP 1 * FROM 表;
SQL Server 下面可以这么写。
其他数据库不行。
EXCEPT
SELECT TOP 1 * FROM 表;
SQL Server 下面可以这么写。
其他数据库不行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from
(select row_number() over(order by getdate()) as rn,* from tablename) as t
where rn=2
(select row_number() over(order by getdate()) as rn,* from tablename) as t
where rn=2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询