Interview Questions

How do you return the a hundred books starting from 25th?

MySQL and SQL


(Continued from previous question...)

How do you return the a hundred books starting from 25th?

SELECT book_title FROM books LIMIT 25, 100. The first number in LIMIT is the offset, the second is the number.

(Continued on next question...)

Other Interview Questions