Many times a table contain many duplicate values in a
column and we want to show only different value then we use Distinct Keyword.
Distinct Keyword is used to return only different
value.
Example – 
We have table name emp:
select Distinct id from emp
output -  
                                                               Author - Sachin Pathak