Which operation is used for summarization in SQL?

  • DELETE
  • INSERT
  • SELECT
  • UPDATE
The SELECT operation in SQL is used for summarization. It allows you to retrieve and present summarized information from the database. By using aggregate functions like SUM, AVG, MAX, MIN, or COUNT in conjunction with the SELECT statement, you can perform summarization operations on the data stored in tables.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *