Order By and Distinct Cheat Sheet > Querying with SQL

 ORDER BY and DISTINCT

In any e-commerce application, users have the option of sorting the products based on price, rating, etc. Also, for any product, users could know all the distinct brands available for the product. Let's learn how to retrieve such ordered results and unique data!

Database The database contains a

product
table that stores the data of products like name, category, price, brand and rating. You can check the schema and data of
product
table in the code playground.

ORDER BY

We use

ORDER BY
clause to order rows. By default,
ORDER BY
sorts the data in the
ascending order
.

Syntax

SELECT
column1,
column2,
..columnN
FROM
table_name [WHERE condition]
ORDER BY
column1 ASC / DESC,
cloumn2 ASC / DESC;
SQL

Example

Get all products in the order of lowest

price
and highest
rating
in "Puma" brand.

SELECT
name,
price,
rating
FROM
product
WHERE
brand = "Puma"
ORDER BY
price ASC,
rating DESC;
 
SQL
Expand
Output
namepricerating
Black Shirt6004.8
Blue Jeans8003.6
Blue Shirt10004.3

Try it Yourself!

  • Get all the shirts from

    product
    table in the descending order of their
    rating
    and in the ascending order of
    price
    .

    Note: Assusme the products as shirts, if the

    name
    contains "Shirt".

DISTINCT

DISTINCT
clause is used to return the distinct i.e unique values.

Syntax

SELECT
DISTINCT column1,
column2,..
columnN
FROM
table_name
WHERE
[condition];
SQL

Example

  • Get all the brands present in the
    product
    table.
SELECT
DISTINCT brand
FROM
product
ORDER BY
brand;
SQL
Output
Brand
Absa
Apple
...

Try it Yourself!

  • Get a list of distinct categories available in the
    product
    table
View Schema
namecategorypricebrandrating
Blue ShirtClothing750Denim3.8
Blue JeansClothing800Puma3.6
Black JeansClothing750Denim4.5
Blue ShirtClothing1000Puma4.3
Chocolate CakeFood25Britannia3.7
Strawberry CakeFood60Cadbury4.1
Chocolate CakeFood60Cadbury2.5
Strawberry CakeFood10Britannia4.6
Smart WatchGadgets17000Apple4.9
Smart CamGadgets2600Realme4.7
Smart TVGadgets40000Sony4
Bourbon SmallFood10Britannia3.9
Bourbon SpecialFood15Britannia4.6
Bourbon With Extra CookiesFood30Britannia4.4
White ShirtClothing700Denim4.3
Black ShirtClothing600Puma4.8
Black T-ShirtClothing600Roadster4.2
White T-ShirtClothing700Levi's4
Blue T-ShirtClothing600Nike4.7
Realme Smart BandGadgets3000Realme4.6
Raw CashewFood370Absa3.9
Cashew NutsFood550Upcrop4.3
Chocolate CashewFood670Urban Platter3.5
Potato Chips India’s Magic MasalaFood42Lay's4.4
Banana ChipsFood550Calicut Kerala4.3
Potato Chips Cream & onionFood63Lay's4.5
Potato Chips Classic SaltedFood45Lay's4
Harry Potter and the Philosopher's StoneNovel2224.7
Harry Potter and the Chamber of SecretsNovel3434.4
Harry Potter and the Prisoner of AzkabanNovel2844.2
Harry Potter and the Goblet of FireNovel4314.6
OnePlus 6TSmartphone32990OnePlus4.5
Redmi K20Smartphone24999Redmi4.1

Post a Comment

Please Select Embedded Mode To Show The Comment System.*

Previous Post Next Post

Contact Form