In SQL, what is the effect of the 'DISTINCT' keyword?
Q1. In SQL, what is the effect of the 'DISTINCT' keyword?
Answer: It removes duplicate rows from the result set
Explanation: DISTINCT eliminates duplicate rows, ensuring that each row in the result set is unique.