What is the result of a SQL query with a DISTINCT keyword?
Q1. What is the result of a SQL query with a DISTINCT keyword?
Answer: Unique rows, without duplicates
Explanation: DISTINCT keyword removes duplicate rows, returning only unique rows in the result set.