Constraint Information (column level)
To find the names of the columns to which a constraint applies.DESCRIBE user_cons_columns;- The name of the owner of a constraint - The name of the constraint, - Table name - The names of the columns with the constraint - The original position of column or attribute in the definition of the objectSELECT constraint_name, column_name FROM user_cons_columns WHERE table_name = 'EMPLOYEES';* A constr..