HOW TO USE MIN() AND MAX() FUNTION IN SQL?

364 viewsSQLSQL
0
0
MIN and MAX in SQL
MIN and MAX in SQL
MIN() AND MAX()

MIN() function returns the smallest value of the selected column

Syntax –

SELECT  MIN(ColumnName)

FROM <TableName>

WHERE<condition> ;

Example-

SELECT  MIN(Price)

FROM Products;

MAX() function returns the largest value of the selected column

Syntax –

SELECT  MAX(ColumnName)

FROM <TableName>

WHERE<condition> ;

Example-

SELECT  MAX(Price)

FROM Products;

Note-

Northwind database is used for examples.

Saraswat World Changed status to publish June 14, 2023
Write your answer.

Posted

in

Tags:

Comments

Leave a Reply

Ganesh Ji Arti A Tribute to Dilip Kumar