---
title: "How do you return the a hundred books starting from 25th?"  
description: "How do you return the a hundred books starting from 25th?"  
author: "Anonymous User"  
published: 2011-05-20  
updated: 2020-09-24  
canonical: https://www.mindstick.com/interview/973/how-do-you-return-the-a-hundred-books-starting-from-25th  
category: "mysql"  
tags: ["mysql"]  
reading_time: 1 minute  

---

# 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.

## Answers

### Answer by Anonymous User

SELECT book_title FROM books LIMIT 25, 100. The first number in LIMIT is the offset, the second is the number.


---

Original Source: https://www.mindstick.com/interview/973/how-do-you-return-the-a-hundred-books-starting-from-25th

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
