Answers for "drop foreign key constraint postgres"

SQL
2

postgresql drop primary key constraint

alter table public.test1 drop constraint test1_pkey
Posted by: Guest on December-04-2020
1

postgres remove foreign key constraint

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

how to disable foreign key constraint in postgresql

ALTER TABLE tbl_StudentMarks DISABLE TRIGGER ALL;
Posted by: Guest on April-04-2021
0

postgres disable foreign keys

SET session_replication_role = replica;
Posted by: Guest on June-11-2021

Code answers related to "drop foreign key constraint postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language