Answers for "remove foreign key constraint psql"

SQL
3

drop constraint psql

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

postgres remove foreign key constraint

ALTER TABLE your_tbl DROP constraint your_cnstrnt;
Posted by: Guest on August-27-2021

Code answers related to "remove foreign key constraint psql"

Code answers related to "SQL"

Browse Popular Code Answers by Language