select constraint_name,search_condition
from all_constraints
where table_name='NAME_OF_YOUR_TABLE'
and constraint_type='C';
Listet den Check und den Constraint-Namen aller Check-Constraints für eine bestimmte Tabelle auf.
select constraint_name,search_condition
from all_constraints
where table_name='NAME_OF_YOUR_TABLE'
and constraint_type='C';
Listet den Check und den Constraint-Namen aller Check-Constraints für eine bestimmte Tabelle auf.