In a table, a column contains duplicate value, if you want to list all different value only, then which SQL clause is used?. Single choice. code example
Example: DISTINCT SQL
SELECT DISTINCT column1, column1, ..... FROM TABLE
/*DISTINCT WILL NOT SELECT THE SAME VALUES IN SAME COLUMN*/