MySQL LIMIT clause is easy

Your video will begin in 10
67 Views
Published
#MySQL #tutorial #course

MySQL tutorial for beginners

SELECT * FROM customers
LIMIT 1;

SELECT *FROM customers
LIMIT 2;

SELECT * FROM customers
LIMIT 3;

SELECT * FROM customers
ORDER BY last_name DESC
LIMIT 3;

SELECT * FROM customers
ORDER BY last_name ASC
LIMIT 3;

SELECT * FROM customers
LIMIT 1, 3;
Category
Bro Code
Be the first to comment