Search notes:

Oracle: DBA_COL_PRIVS

dba_col_privs lists granted privileges on columns.
select
   cpr.grantee,
   cpr.owner,
   cpr.table_name,
   cpr.column_name,
   cpr.grantor,
   cpr.privilege,
   cpr.grantable,
   cpr.common,
   cpr.inherited
from
   dba_col_privs cpr;

See also

Grant privileges on columns
all_col_privs_made, all_col_privs_recd
data dictionary

Index