SlideShare a Scribd company logo
Aggregate Functions
Order by clause
Having Clause
Distinct Clause
Count
Max
Min
Avg
Sum
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
Mysql order by clause
The default sort order is ascending, with
smallest values first.
To sort in reverse (descending) order, add
the DESC keyword to the name of the
column you are sorting by:
Mysql order by clause
Mysql order by clause
Mysql order by clause
SELECT ordernumber , itemsCount ,
sum(priceeach) AS total FROM orderdetails
GROUP BY ordernumber
Mysql order by clause
Mysql order by clause
order to remove the duplicate rows, we
use the DISTINCT operator in the SELECT
statement.
General Syntax
SELECT DISTINCT columns
FROM table_name
WHERE where_conditions
SELECT lastname FROM employees
ORDER BY lastname
SELECT DISTINCT lastname FROM employees
ORDER BY lastname
Mysql order by clause

More Related Content

PPTX
Aggregate Function - Database
PDF
Python set
PDF
CBSE Class 12 Computer Science(083) Sample Question Paper 2020-21
PPTX
Sql joins inner join self join outer joins
PPT
MYSQL Aggregate Functions
PPTX
Aggregate function
PPTX
Sql.pptx
PPTX
AGGREGATE FUNCTION.pptx
Aggregate Function - Database
Python set
CBSE Class 12 Computer Science(083) Sample Question Paper 2020-21
Sql joins inner join self join outer joins
MYSQL Aggregate Functions
Aggregate function
Sql.pptx
AGGREGATE FUNCTION.pptx

What's hot (20)

PPTX
Data Structure - Elementary Data Organization
PDF
PDF
DBMS 6 | MySQL Practice List - Rank Related Queries
PPTX
Data structure , stack , queue
PPT
Aggregate functions
PPTX
concept of Array, 1D & 2D array
PPT
PLSQL Cursors
PPTX
Array in c language
DOCX
Sql Queries
DOC
80 different SQL Queries with output
PPTX
Basic SQL and History
PPTX
Datastructures in python
PPTX
Sql commands
PPTX
Python array
PPTX
Multi-threaded Programming in JAVA
PDF
Introduction To Oracle Sql
Data Structure - Elementary Data Organization
DBMS 6 | MySQL Practice List - Rank Related Queries
Data structure , stack , queue
Aggregate functions
concept of Array, 1D & 2D array
PLSQL Cursors
Array in c language
Sql Queries
80 different SQL Queries with output
Basic SQL and History
Datastructures in python
Sql commands
Python array
Multi-threaded Programming in JAVA
Introduction To Oracle Sql
Ad

More from MusTufa Nullwala (20)

PDF
Internet of Things
PDF
Operating system
PDF
Augmented Reality
PDF
Intro to web development
PDF
An introduction to the Internet
PDF
System center service manager
PDF
System center orchestrator
PDF
Network Design Implications of QoS and QoE
PDF
Microsoft System center
PDF
Quality of Experience
PDF
Quality of Service
PDF
Network Virtualization
PDF
NFV Functionality
PDF
Testing throughout the software life cycle
PDF
Software Testing
PDF
V-Test Model
PDF
Verification and Validation
PDF
Network Functions Virtualization - Concepts and Architecture
PDF
Continual service improvement methods and techniques
PDF
Unit 3 chap 4 itsm
Internet of Things
Operating system
Augmented Reality
Intro to web development
An introduction to the Internet
System center service manager
System center orchestrator
Network Design Implications of QoS and QoE
Microsoft System center
Quality of Experience
Quality of Service
Network Virtualization
NFV Functionality
Testing throughout the software life cycle
Software Testing
V-Test Model
Verification and Validation
Network Functions Virtualization - Concepts and Architecture
Continual service improvement methods and techniques
Unit 3 chap 4 itsm
Ad

Recently uploaded (20)

PPTX
20th Century Theater, Methods, History.pptx
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
Introduction to pro and eukaryotes and differences.pptx
PDF
advance database management system book.pdf
PDF
HVAC Specification 2024 according to central public works department
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PDF
IGGE1 Understanding the Self1234567891011
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PPTX
Introduction to Building Materials
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PPTX
Computer Architecture Input Output Memory.pptx
PPTX
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
Trump Administration's workforce development strategy
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
20th Century Theater, Methods, History.pptx
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Introduction to pro and eukaryotes and differences.pptx
advance database management system book.pdf
HVAC Specification 2024 according to central public works department
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
IGGE1 Understanding the Self1234567891011
TNA_Presentation-1-Final(SAVE)) (1).pptx
Introduction to Building Materials
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
Computer Architecture Input Output Memory.pptx
ELIAS-SEZIURE AND EPilepsy semmioan session.pptx
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
Trump Administration's workforce development strategy
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
Chinmaya Tiranga quiz Grand Finale.pdf
Virtual and Augmented Reality in Current Scenario
LDMMIA Reiki Yoga Finals Review Spring Summer
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf

Mysql order by clause