Computer Science, asked by sarang0603, 2 months ago

what is the use of order by and group by clause in python. explain with example.

Answers

Answered by anshika1802
6

Answer:

Hello mate

Explanation:

ORDER BY is used to sort a result by a list of columns or expressions. GROUP BY is used to create unique combinations of a list of columns

Answered by amulyaphule25
0

Answer:

Group by statement is used to group the rows that have the same value. It is often used with aggregate functions for example:AVG(), MAX(), COUNT(), MIN() etc.

Attachments:
Similar questions