To filter duplicate data from a table, we use a DISTINCT keyword before the column name (of which data is to filter).
Distinct query-
SELECT DISTINCT column FROM table;
Date Published: 30/07/2020 Published By: JaiSchool
To filter duplicate data from a table, we use a DISTINCT keyword before the column name (of which data is to filter).
SELECT DISTINCT column FROM table;
Publish A Comment