Answers for "defferable foreign key constraint postgresql"

SQL
1

how to disable foreign key constraint in postgresql

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

PostgreSQL foreign key constraint syntax

[CONSTRAINT fk_name]
   FOREIGN KEY(fk_columns) 
   REFERENCES parent_table(parent_key_columns)
   [ON DELETE delete_action]
   [ON UPDATE update_action]
Code language: CSS (css)
Posted by: Guest on December-15-2021

Code answers related to "defferable foreign key constraint postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language