PROBLEM - Oracle - SQL to get all constraints for a Table

Problem


Get all constraints for a Table


Solution 


Use the following SQL

select * from user_constraints where table_name = '<TABLE_NAME>'