MySQL ORDER BY clause is easy

Details
Title | MySQL ORDER BY clause is easy |
Author | Bro Code |
Duration | 2:36 |
File Format | MP3 / MP4 |
Original URL | https://youtube.com/watch?v=R-5F3BF8IeY |
Description
#MySQL #tutorial #course
SELECT * FROM employees
ORDER BY last_name ASC;
SELECT * FROM transactions
ORDER BY amount DESC, customer_id DESC;