drop table with constraints

Solutions on MaxInterview for drop table with constraints by the best coders in the world

showing results for - "drop table with constraints"
Gael
06 Sep 2019
11. 'First Drop contrstraints like this'
2ALTER TABLE table_name
3DROP CONSTRAINT constraint_name;
42. 'Then drop table'
5DROP TABLE table_name;