HOW TO USE COUNT() AVG() SUM() FUNTIONS IN SQL?

385 viewsSQLSQL
0
COUNT AVG SUM in SQL
COUNT AVG SUM in SQL

COUNT() function returns the number of rows that matches a specified condition.

Syntax –

SELECT  COUNT(ColumnName)

FROM <TableName>

WHERE<condition> ;

Example-

SELECT  Count(ProductID)

FROM Products;

AVG() function returns the average value of a numeric column.

Syntax –

SELECT  AVG(ColumnName)

FROM <TableName>

WHERE<condition> ;

Example-

SELECT  AVG(Price)

FROM Products;

SUM() function returns the sum value of a numeric column.

Syntax –

SELECT  SUM(ColumnName)

FROM <TableName>

WHERE<condition> ;

Example-

SELECT  SUM(Quantity)

FROM OrderDetails;

Note-

Northwind sample 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