Reader small image

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

Sorting Rows

 

Now that we know how to select data from our tables and filter the results, let’s cover one last concept before we end this chapter. Let’s look at how we can sort the results returned by the SELECT statement.

 

To do that, we use the ORDER BY clause. We can choose to sort the results based on one or more columns.

 

Suppose we want to sort the rows of the employees table using gender, followed by the employee’s name (em_name), we write

 

SELECT * FROM employees ORDER BY gender, em_name;

 

This results in the records of female employees being displayed first, followed by male employees (since the letter F comes before M).

 

Within each gender, the records will be sorted by the employees’ names.

 

Note that the default sorting order is ascending. If we want to sort by descending order, we use the DESC keyword as shown below:

 

SELECT * FROM employees ORDER BY gender DESC, em_name;

 ...

lock icon
The rest of the page is locked
Previous PageNext Chapter
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-13: 9781836205678

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan