|
发表于 2020-4-13 22:00:01
|
显示全部楼层
SQL Server:select top 4 * from (select top 8 * from table a where not exists(select top 4 * from table columns_A=a.columns_A))
Oracle:select * from table where rownum between 5 and 8
____________________________________
...
大概就是这样 |
|