如何用SQL子查询在不知道表中字段的情况下查出表内的第二条记录
发布网友
发布时间:2022-04-09 12:49
我来回答
共2个回答
热心网友
时间:2022-04-09 14:19
seclect * ...全部查出来不就行了
呵呵,记录少的话可以这样。
用limit*符就可以
比如:select * from table_name limit 1,2;
就是显示1到2行。
热心网友
时间:2022-04-09 15:37
可以按主键查找
select top 1 * from 表 where id in (select top 2 列 from 表 order by id desc)
或者
select top 1 * from 表 where id <>(select top 1 id from 表)