I can select all the distinct values in a column in the following ways:
SELECT DISTINCT column_name FROM table_name;
SELECT column_
**
Using following SQL we can get the distinct column value count in Oracle 11g.
Select count(distinct(Column_Name)) from TableName