What is the result of a SQL query with a GROUP BY clause?
Q1. What is the result of a SQL query with a GROUP BY clause?
Answer: Multiple rows grouped by a column
Explanation: GROUP BY groups rows with the same value in the specified column, enabling aggregation and analysis.