--/*楼主用 Top1 就可以只读1条数据了。*/ select top 1 * from 表 --/*读第二条*/ select top 1 * from (select top 2 * from 表 order by ID desc) --/*读第N条*/ select top 1 * from (select top 2 * from 表 order by ID desc)
2,507
社区成员
88,454
社区内容
加载中
试试用AI创作助手写篇文章吧