如何在sql中使用分页符?

时间:2011-03-31 13:02:47

标签: sql

是否有任何方法可以在sql中使用分页符。实际上在shell脚本命令的帮助下生成报告。一旦到达第35行,需要将报告分解到下一页。如何编写sql这个声明?

2 个答案:

答案 0 :(得分:2)

你应该在你的调用应用程序中执行此操作,输出的分页不是SQL适合的。

答案 1 :(得分:1)

好吧,我认为LIMIT就是你所需要的。像这样:

SELECT * FROM `your_table` LIMIT 0, 10
(This will display the first 10 results from the database)

SELECT * FROM `your_table` LIMIT 5, 5
(This will show records 6, 7, 8, 9, and 10)

SELECT * FROM `your_table` LIMIT 20, 10
(This will return 10 records from 21st record. That is from 21st record to 30th  record)

希望这有帮助