sql distinct v code example
Example: what is distinct in sql
Distinct: helps to displays the non duplicate
records when retrieving the records from a table.
SELECT DISTINCT FIRST_NAME FROM VISITORS;
Distinct: helps to displays the non duplicate
records when retrieving the records from a table.
SELECT DISTINCT FIRST_NAME FROM VISITORS;