0% found this document useful (0 votes)
17 views

Orderby

Uploaded by

subashreenata
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Orderby

Uploaded by

subashreenata
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Search field


Log inSign Up Get Certified Spaces Set Goal
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C+
+ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PAND
AS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI G
O KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA
SCIENCE

SQL Tutorial
SQL HOMESQL IntroSQL SyntaxSQL SelectSQL Select DistinctSQL WhereSQL Order
BySQL AndSQL OrSQL NotSQL Insert IntoSQL Null ValuesSQL UpdateSQL DeleteSQL
Select TopSQL Aggregate FunctionsSQL Min and MaxSQL CountSQL SumSQL AvgSQL
LikeSQL WildcardsSQL InSQL BetweenSQL AliasesSQL JoinsSQL Inner JoinSQL Left
JoinSQL Right JoinSQL Full JoinSQL Self JoinSQL UnionSQL Group BySQL HavingSQL
ExistsSQL Any, AllSQL Select IntoSQL Insert Into SelectSQL CaseSQL Null FunctionsSQL
Stored ProceduresSQL CommentsSQL Operators

SQL Database
SQL Create DBSQL Drop DBSQL Backup DBSQL Create TableSQL Drop TableSQL Alter
TableSQL ConstraintsSQL Not NullSQL UniqueSQL Primary KeySQL Foreign KeySQL
CheckSQL DefaultSQL IndexSQL Auto IncrementSQL DatesSQL ViewsSQL InjectionSQL
HostingSQL Data Types

SQL References
SQL KeywordsMySQL FunctionsSQL Server FunctionsMS Access FunctionsSQL Quick Ref

SQL Examples
SQL ExamplesSQL EditorSQL QuizSQL ExercisesSQL ServerSQL BootcampSQL Certificate

SQL ORDER BY Keyword


❮ PreviousNext ❯

The SQL ORDER BY


The ORDER BY keyword is used to sort the result-set in ascending or
descending order.
ExampleGet your own SQL Server
Sort the products by price:

SELECT * FROM Products


ORDER BY Price;

Try it Yourself »

Syntax
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;

Demo Database
Below is a selection from the Products table used in the examples:

ProductID ProductName SupplierID CategoryID Unit

1 Chais 1 1 10 boxes x 2

2 Chang 1 1 24 - 12 oz b

3 Aniseed Syrup 1 2 12 - 550 ml

4 Chef Anton's Cajun Seasoning 2 2 48 - 6 oz jar

5 Chef Anton's Gumbo Mix 2 2 36 boxes


DESC
The ORDER BY keyword sorts the records in ascending order by default. To sort
the records in descending order, use the DESC keyword.

Example
Sort the products from highest to lowest price:

SELECT * FROM Products


ORDER BY Price DESC;

Try it Yourself »

Order Alphabetically
For string values the ORDER BY keyword will order alphabetically:

Example
Sort the products alphabetically by ProductName:

SELECT * FROM Products


ORDER BY ProductName;

Try it Yourself »

Alphabetically DESC
To sort the table reverse alphabetically, use the DESC keyword:

Example
Sort the products by ProductName in reverse order:
SELECT * FROM Products
ORDER BY ProductName DESC;

Try it Yourself »

ORDER BY Several Columns


The following SQL statement selects all customers from the "Customers"
table, sorted by the "Country" and the "CustomerName" column. This means
that it orders by Country, but if some rows have the same Country, it orders
them by CustomerName:

Example
SELECT * FROM Customers
ORDER BY Country, CustomerName;

Try it Yourself »

Using Both ASC and DESC


The following SQL statement selects all customers from the "Customers"
table, sorted ascending by the "Country" and descending by the
"CustomerName" column:

Example
SELECT * FROM Customers
ORDER BY Country ASC, CustomerName DESC;

Try it Yourself »

Test Yourself With Exercises


Exercise:
Select all records from the Customers table, sort the
result alphabetically by the column City.
SELECT * FROM Customers
;

Submit Answer »

Start the Exercise

❮ PreviousNext ❯

W3schools Pathfinder
Track your progress - it's free!
Log inSign Up

COLOR PICKER

SPACES
UPGRADE
AD-FREE
NEWSLETTER
GET CERTIFIED
CONTACT US

Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial

Top References

HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference

Top Examples

HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples

Get Certified

HTML Certificate
CSS Certificate
JavaScript Certificate
Front End Certificate
SQL Certificate
Python Certificate
PHP Certificate
jQuery Certificate
Java Certificate
C++ Certificate
C# Certificate
XML Certificate
 FORUM ABOUT CLASSROOM
W3Schools is optimized for learning and training. Examples might be simplified to improve reading
and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we
cannot warrant full correctness of all content. While using W3Schools, you agree to have read and
accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.

You might also like