In SQL, what is the effect of the 'GROUP BY' clause?
Q1. In SQL, what is the effect of the 'GROUP BY' clause?
Answer: It groups the result set by one or more columns
Explanation: GROUP BY groups the result set by one or more columns, allowing aggregate functions to be applied to each group.