

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Fetch data between two rows in MySQL?
To fetch data between two rows, use the concept of LIMIT. Let us first create a table −
mysql> create table DemoTable ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Name varchar(10) ); Query OK, 0 rows affected (0.22 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable(Name) values('Larry'); Query OK, 1 row affected (0.06 sec) mysql> insert into DemoTable(Name) values('Robert'); Query OK, 1 row affected (0.05 sec) mysql> insert into DemoTable(Name) values('Chris'); Query OK, 1 row affected (0.05 sec) mysql> insert into DemoTable(Name) values('David'); Query OK, 1 row affected (0.04 sec) mysql> insert into DemoTable(Name) values('Bob'); Query OK, 1 row affected (0.06 sec) mysql> insert into DemoTable(Name) values('Sam'); Query OK, 1 row affected (0.04 sec) mysql> insert into DemoTable(Name) values('Mike'); Query OK, 1 row affected (0.06 sec) mysql> insert into DemoTable(Name) values('Carol'); Query OK, 1 row affected (0.05 sec) mysql> insert into DemoTable(Name) values('John'); Query OK, 1 row affected (0.05 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+----+--------+ | Id | Name | +----+--------+ | 1 | Larry | | 2 | Robert | | 3 | Chris | | 4 | David | | 5 | Bob | | 6 | Sam | | 7 | Mike | | 8 | Carol | | 9 | John | +----+--------+ 9 rows in set (0.00 sec)
Following is the query to fetch data between two rows −
mysql> select *from DemoTable limit 2,3;
This will produce the following output -
+----+-------+ | Id | Name | +----+-------+ | 3 | Chris | | 4 | David | | 5 | Bob | +----+-------+ 3 rows in set (0.00 sec)
- Related Questions & Answers
- Python Pandas – Fetch the Common rows between two DataFrames with concat()
- Swap data between two columns in MySQL?
- Fetch random rows from a table with MySQL
- Python Pandas – Find the common rows between two Data Frames
- Fetch rows where first character is not alphanumeric in MySQL?
- Fetch similar ID records from two tables in MySQL
- How to fetch only N rows at a time in MySQL?
- How to fetch random rows in MySQL with comma separated values?
- Fetch a value between different values in MySQL
- How to find the correlation coefficient between rows of two data frames in R?
- Python - Fetch columns between two Pandas DataFrames by Intersection
- MySQL rows concatenation to fetch maximum corresponding value from duplicate IDs?
- Select two random rows in a MySQL database?
- How to select last two rows in MySQL?
- SELECT MySQL rows where today's date is between two DATE columns?
Advertisements