xxxxxxxxxx
SELECT * FROM Customers LIMIT 3;
#Returns 3 records
SELECT * FROM Customers LIMIT 0, 3;
#Returns 3 records starting from 0
xxxxxxxxxx
LIMIT N,1 --> SELECT 1 ROW AFTER SKIPPING N ROWS
select * from Employee limit 3,2; -- select 2 rows after 3 rows
select * from Employee limit 1; -- select 1 row
select * from Employee limit 3; -- select 3 rows