in DBMS by

The DISTINCT statement is used with the SELECT statement. If the record contains duplicate values then the DISTINCT statement is used to select different values among duplicate records.

Syntax:

SELECT DISTINCT column_name(s)
 FROM table_name;

Related questions

0 votes
0 votes
asked Feb 28, 2020 in DBMS by rahuljain1
0 votes
asked Dec 13, 2020 in Sql by SakshiSharma
+1 vote
asked May 29 in DBMS by SakshiSharma
0 votes
asked Nov 12, 2021 in SQLite by Robin
...