DBA > Job Interview Questions > MySQL and SQL
How do you return the a hundred books starting f
More DBA job interview questions and answers at http://dba.fyicenter.com/Interview-Questions/
(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 Job Interview Questions