MySQL LIMIT clause is easy

preview_player
Показать описание
#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;
Рекомендации по теме
Комментарии
Автор

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;

BroCodez
Автор

I'm from Brazil. My english is not good. Well, I am happy, you helped me to learning MySQL. Any course in Brazil is better than you. Thank you very much.

lazy
Автор

Coding bootcamps do hate him. I can't believe I paid a fortune for what I could have learned here in 3 mins.

godcomplex
Автор

Can you make how to make a social media app in pyton

TheSuccessCoach
Автор

sir is this enough to crack interviews?

harshithagr