Question:medium

Describe the use of built-in MySQL functions like COUNT(), SUM(), and MAX().

Show Hint

  • {COUNT()} – Counts the number of records.
  • {SUM()} – Calculates the total of numeric values.
  • {MAX()} – Finds the largest value in a column.
These functions are commonly used with the \texttt{SELECT} statement to summarize data in a database.
Updated On: Mar 10, 2026
Show Solution

Solution and Explanation

Was this answer helpful?
0