当前位置:编程学习 > C#/ASP.NET >>

一个表中有10条记录,在不使用id号的情况下,如何提取出第5到第8条的数据?

一个表中有10条记录,在不使用id号的情况下,如何提取出第5到第8条的数据? --------------------编程问答-------------------- 反正才10条全读,程序处理 --------------------编程问答-------------------- 才10条,全读,代码处理 --------------------编程问答-------------------- 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
____________________________________
...
大概就是这样 --------------------编程问答-------------------- select top m,n from XXX
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,