Answers for "creating constraints primary in oracle sql"

SQL
0

oracle table constraints

SELECT
 	c_list.CONSTRAINT_NAME as NAME,
 	c_src.TABLE_NAME as SRC_TABLE,
 	c_src.COLUMN_NAME as SRC_COLUMN,
 	c_dest.TABLE_NAME as DEST_TABLE,
 	c_dest.COLUMN_NAME as DEST_COLUMN
FROM ALL_CONSTRAINTS c_list, 
    ALL_CONS_COLUMNS c_src, 
    ALL_CONS_COLUMNS c_dest
WHERE c_list.CONSTRAINT_NAME = c_src.CONSTRAINT_NAME
    AND c_list.R_CONSTRAINT_NAME = c_dest.CONSTRAINT_NAME
    AND c_list.CONSTRAINT_TYPE = 'R'
GROUP BY c_list.CONSTRAINT_NAME,
    c_src.TABLE_NAME,
    c_src.COLUMN_NAME,
    c_dest.TABLE_NAME,
    c_dest.COLUMN_NAME;
Posted by: Guest on August-15-2021

Code answers related to "creating constraints primary in oracle sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language