Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (55.6k points)

A. COUNT, SUM, AVG, MAX, MIN

B. SUM, AVG, MIN, MAX, MULT

C. SUM, AVG, MULT, DIV, MIN

D. SUM, AVG, MIN, MAX, NAME

1 Answer

0 votes
by (119k points)

The correct answer is option A (COUNT, SUM, AVG, MAX, MIN). All these are aggregate functions that are in-built functions provided by SQL. These five functions perform calculations on the result-set and return the single value.

  • COUNT ­– count number of rows of a specified table
  • SUM – returns the sum of result-set values
  • AVG – returns the average value of the result-set values
  • MAX – returns the maximum value of the result-set values
  • MIN – returns the minimum value of the result-set values

You can check out this SQL Tutorial to learn all the in-built functions of SQL

To master SQL statements, queries and become proficient in SQL queries, enroll in our industry-recognized SQL course.

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
4 answers
0 votes
1 answer

Browse Categories

...