1SELECT DISTINCT column1, column1, ..... FROM TABLE
2/*DISTINCT WILL NOT SELECT THE SAME VALUES IN SAME COLUMN*/
1Distinct: helps to displays the non duplicate
2records when retrieving the records from a table.
3
4SELECT DISTINCT FIRST_NAME FROM VISITORS;
1The SELECT DISTINCT statement is used to return only distinct (different) values.
2Ex: select DISTINCT Country from TableName;