You are reading the article Order By In Mysql: Desc &Amp; Asc Query With Example updated in September 2023 on the website Happystarlongbien.com. We hope that the information we have shared is helpful to you. If you find the content interesting and meaningful, please share it with your friends and continue to follow and support us for the latest updates. Suggested October 2023 Order By In Mysql: Desc &Amp; Asc Query With Example
Sorting ResultsUsing the SELECT command, results were returned in the same order the records were added into the database. This is the default sort order. In this section, we will be looking at how we can sort our query results. Sorting is simply re-arranging our query results in a specified way. Sorting can be performed on a single column or on more than one column. It can be done on number, strings as well as date data types.
What is ORDER BY in MySQL?
MySQL ORDER BY is used in conjunction with the SELECT query to sort data in an orderly manner. The MySQL ORDER BY clause is used to sort the query result sets in either ascending or descending order.
HERE
“SELECT statement…” is the regular select query
“ORDER BY” performs the query result set sorting
What are DESC and ASC Keywords?
ASC is the short form for ascending
MySQL DESC is the short form for descending
It is used to sort the query results in a top to bottom style.
It is used to sort the query results in a bottom to top style
When working on date data types, the earliest date is shown on top of the list.
. When working on date types, the latest date is shown on top of the list.
When working with numeric data types, the lowest values are shown on top of the list.
When working with numeric data types, the highest values are shown at top of the query result set.
When working with string data types, the query result set is sorted from those starting with the letter A going up to the letter Z.
When working with string data types, the query result set is sorted from those starting with the letter Z going down to the letter A.
DESC and ASC syntax
The SQL DESC sort keyword has the following basic syntax.
HERE
[WHERE condition] is optional but can be used to filter the data according to the given condition.
ORDER BY fieldname(s) is mandatory and is the field on which the sorting is to be performed. The MySQL DESC keyword specifies that the sorting is to be in descending order.
[LIMIT] is optional but can be used to limit the number of results returned from the query result set.
Examples:
Let’s now look at a practical example –
SELECT * FROM members;Executing the above script in MySQL workbench against the myflixdb gives us the following results shown below.
membership_number full_names gender date_of_birth physical_address postal_address contct_number email 1 Janet Jones Female 21-07-1980 First Street Plot No 4 Private Bag 0759 253 542 janetjones@yagoo.cm 2 Janet Smith Jones Female 23-06-1980 Melrose 123 NULL NULL 3 Robert Phil Male 12-07-1989 3rd Street 34 NULL 12345 4 Gloria Williams Female 14-02-1984 2nd Street 23 NULL NULL NULL 5 Leonard Hofstadter Male NULL Woodcrest NULL 845738767 NULL 6 Sheldon Cooper Male NULL Woodcrest NULL 976736763 NULL 7 Rajesh Koothrappali Male NULL Woodcrest NULL 938867763 NULL 8 Leslie Winkle Male 14-02-1984 Woodcrest NULL 987636553 NULL 9 Howard Wolowitz Male 24-08-1981 SouthPark P.O. Box 4563 987786553Let’s suppose the marketing department wants the members details arranged in decreasing order of Date of Birth. This will help them send birthday greetings in a timely fashion. We can get the said list by executing a query like below –
SELECT * FROM members ORDER BY date_of_birth DESC;Let’s suppose the marketing department wants the members details arranged in decreasing order of Date of Birth. This will help them send birthday greetings in a timely fashion. We can get the said list by executing a query like below –
Executing the above script in MySQL workbench against the myflixdb gives us the following results shown below.
The same query in ascending order
SELECT * FROM members ORDER BY date_of_birth ASC
Note: NULL values means no values (not zero or empty string) . Observe the way they have been sorted.
More examplesLet’s consider the following SQL sort by script that lists all the member records.
SELECT * FROM `members`;Executing the above script gives the following results shown below.
membership_number full_names gender date_of_birth physical_address postal_address contct_number email 1 Janet Jones Female 21-07-1980 First Street Plot No 4 Private Bag 0759 253 542 janetjones@yagoo.cm 2 Janet Smith Jones Female 23-06-1980 Melrose 123 NULL NULL 3 Robert Phil Male 12-07-1989 3rd Street 34 NULL 12345 4 Gloria Williams Female 14-02-1984 2nd Street 23 NULL NULL NULL 5 Leonard Hofstadter Male NULL Woodcrest NULL 845738767 NULL 6 Sheldon Cooper Male NULL Woodcrest NULL 976736763 NULL 7 Rajesh Koothrappali Male NULL Woodcrest NULL 938867763 NULL 8 Leslie Winkle Male 14-02-1984 Woodcrest NULL 987636553 NULL 9 Howard Wolowitz Male 24-08-1981 SouthPark P.O. Box 4563 987786553 NULLSuppose we want to get a list that sorts the query result set using the gender field, we would use the script shown below.
SELECT * FROM `members` ORDER BY `gender`; membership_number full_names gender date_of_birth physical_address postal_address contct_number email 1 Janet Jones Female 21-07-1980 First Street Plot No 4 Private Bag 0759 253 542 janetjones@yagoo.cm 2 Janet Smith Jones Female 23-06-1980 Melrose 123 NULL NULL 4 Gloria Williams Female 14-02-1984 2nd Street 23 NULL NULL NULL 3 Robert Phil Male 12-07-1989 3rd Street 34 NULL 12345 5 Leonard Hofstadter Male NULL Woodcrest NULL 845738767 NULL 6 Sheldon Cooper Male NULL Woodcrest NULL 976736763 NULL 7 Rajesh Koothrappali Male NULL Woodcrest NULL 938867763 NULL 8 Leslie Winkle Male 14-02-1984 Woodcrest NULL 987636553 NULL 9 Howard Wolowitz Male 24-08-1981 SouthPark P.O. Box 4563 987786553 NULLSuppose we want to get a list that sorts the query result set using the gender field, we would use the script shown below.
“Female” members have been displayed first followed by “Male” members, this is because when ORDER BY DESC clause is used without specifying the ASC or MySQL DESC keyword, by default, MySQL has sorted the query result set in an ascending order.
Let’s now look at an example that does the sorting using two columns; the first one is sorted in ascending order by default while the second column is sorted in descending order.
SELECT * FROM `members` ORDER BY `gender`,`date_of_birth` DESC;Executing the above script in MySQL workbench against the myflixdb gives the following results.
The gender column was sorted in ascending order by default while the date of birth column was sorted in descending order explicitly
Why we may use DESC and ASC?Suppose we want to print a payments history for a video library member to help answer queries from the front desk, wouldn’t it be more logical to have the payments printed in a descending chronological order starting with the recent payment to the earlier payment?
DESC in SQL is a keyword which becomes handy in such situations. We can write a query that sorts the list in descending order using the payment date.
Suppose the marketing department wants to get a list of movies by category that members can use to decide which movies are available in the library when renting movies, wouldn’t it be more logical to look sort the movie category names and title in ascending so that members can quickly lookup the information from the list?
The ASC keyword comes in handy in such situations; we can get the movies list sorted by category name and movie title in an ascending order.
Summary
Sorting query results is re-arranging the rows returned from a query result set either in ascending or descending order.
The keyword DESC in SQL, is used to sort the query result set in a descending order.
The ASC keyword is used to sort the query result set in an ascending order.
Both DESC and ASC work in conjunction with the ORDER BY keyword. They can also be used in combination with other keywords such as WHERE clause and LIMIT
The default for ORDER BY when nothing has been explicitly specified is ASC.
You're reading Order By In Mysql: Desc &Amp; Asc Query With Example
Update the detailed information about Order By In Mysql: Desc &Amp; Asc Query With Example on the Happystarlongbien.com website. We hope the article's content will meet your needs, and we will regularly update the information to provide you with the fastest and most accurate information. Have a great day!