sqlserver 和 Mysql 的前几条的查询
Posted 亮亮1990
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver 和 Mysql 的前几条的查询相关的知识,希望对你有一定的参考价值。
select * from tablename where id<0 order by id desc limit 0,8
-------------------------
转换为 sql
m 0
n 8
where id not in (
select top m-1 id from tablename
)
以上是关于sqlserver 和 Mysql 的前几条的查询的主要内容,如果未能解决你的问题,请参考以下文章