Business Studies, asked by akhil5396, 3 months ago

In which built in table are the constraint names stored?
user_constraints
user_views
user_tables
user_cons columns​

Answers

Answered by saqlainsadaqut2000
3

Answer:

user_cons column s

Explanation:

You have to query the data dictionary, specially the USER_CONS_COLUMNS view to see the table columns and the corresponding constraints like this:

SELECT *

FROM user_cons_columns

WHERE table_name = '<your table name>';

Similar questions