Oracle SQL Count Occurrences of Value dans la colonne

 SELECT t.COLUMN,
         COUNT(*) AS numInstances
    FROM YOUR_TABLE t
GROUP BY t.COLUMN
DevPedrada