This question asked in CBSE SQP-2020
Which clause is used to remove the duplicating rows of the table?
Answer:
The DISTINCT keyword is used to remove the duplicate rows in a table.
Syntax:
SELECT
DISTINCT
column1
,
column2, ...
FROM
table_name
;
Example: