MySQL tutorial for beginners 🐬 - MySQL LIMIT clause is easy
4.0(1)
11 learners
What you'll learn
This course includes
2.5 hours of video
Certificate of completion
Access on mobile and TV
Summary
Full Transcript
#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;
Continue this lesson in the app
Install CourseHive on Android or iOS to keep learning while you move.