Neeraj
Neeraj

Reputation: 201

Mysql fetch data between two rows

Newbie question: I want to get data between two rows, say, row number 5 and row number 10. How can I do that? There is no id or any integer column in the table and I cannot modify the table.

Upvotes: 4

Views: 1952

Answers (1)

Harry Joy
Harry Joy

Reputation: 59660

You can use limit

select * from `table` limit 4,5;

Upvotes: 4

Related Questions