Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Return the Second 5 Rows
How To Return the Second 5 Rows? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries
✍: FYIcenter.com
If you want to display query output in multiple pages with 5 rows per page, and the visitor wants to see the output for the second page, you need to display query output from row 6 to row 10. You can use the "LIMIT startRow maxRows" clause to return only rows starting from "startRow" to "startRow+maxRows-1". Note that MySQL counts output rows starting with 0.
The following statement returns the second 5 rows first from the fyi_links table:mysql> SELECT id, url, counts, tag FROM fyi_links ORDER BY counts DESC LIMIT 5, 5; -- the first "5" means starting with row #6. +-----+-------------------+--------+------+ | id | url | counts | tag | +-----+-------------------+--------+------+ | 102 | dba.fyicenter.com | 3 | DBA | | 104 | www.mysql.com | 1 | DBA | +-----+-------------------+--------+------+ 2 rows in set (0.00 sec)
2007-05-11, 6391👍, 0💬
Popular Posts:
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
Can Multiple Cursors Being Opened at the Same Time? - Oracle DBA FAQ - Working with Cursors in PL/SQ...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
What Is a TD Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells A "td" elemen...
How To Empty Your Recycle Bin? - Oracle DBA FAQ - Managing Oracle Database Tables If your recycle bi...