Computer Science, asked by atharfayaz8, 4 months ago

What do you mean by Group functions in MySQL ? Give any two examples.​

Answers

Answered by tanmay8110
3

Answer:

Introduction to MySQL GROUP BY clause

The GROUP BY clause groups a set of rows into a set of summary rows by values of columns or expressions. The GROUP BY clause returns one row for each group. In other words, it reduces the number of rows in the result set.

You often use the GROUP BY clause with aggregate functions such as SUM, AVG, MAX, MIN, and COUNT. The aggregate function that appears in the SELECT clause provides information about each group.

The GROUP BY clause is an optional clause of the SELECT statement. The following illustrates the GROUP BY clause syntax:

SELECT

c1, c2,..., cn, aggregate_function(ci)

FROM

table

WHERE

where_conditions

GROUP BY c1 , c2,...,cn;

The GROUP BY clause must appear after the FROM and WHERE clauses. Following the GROUP BY keywords is a list of comma-separated columns or expressions that you want to use as criteria to group rows.

MySQL evaluates the GROUP BY clause after the FROM, WHERE and SELECT clauses and before the HAVING , ORDER BY and LIMIT clauses:

Answered by Ryder24
0

Explanation:

rfujjgddf bkggukjgghugf5

Similar questions