Computer Science, asked by sanidhyagurung, 2 days ago

how do you use max function in mysql​

Answers

Answered by Ankitsinharaya
6

Answer:

The MySQL MAX() function is used to return the maximum value in a set of values of an expression.

...

The following is the basic syntax of MAX() function in MySQL:

SELECT MAX(DISTINCT aggregate_expression)

FROM table_name(s)

[WHERE conditions];

Explanation:

Hope it helps you ✌️✌️

Similar questions