InterviewSolution
Saved Bookmarks
| 1. |
How Do You Return The A Hundred Books Starting From 25th? |
|
Answer» SELECT book_title FROM BOOKS LIMIT 25, 100. The FIRST number in LIMIT is the OFFSET, the second is the number. SELECT book_title FROM books LIMIT 25, 100. The first number in LIMIT is the offset, the second is the number. |
|