Answers for "postgres drop table ignore constraints"

3

drop constraint psql

ALTER TABLE table_name
DROP CONSTRAINT constraint_name;
Posted by: Guest on June-09-2021
2

remove foreign key constraints in postgres

set session_replication_role to replica;
Posted by: Guest on November-22-2021

Code answers related to "postgres drop table ignore constraints"

Browse Popular Code Answers by Language