Answers for "postgres how can i update all foreign keys referencing a table"

SQL
1

postgre alter table foreign key

ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) REFERENCES addresses (address) MATCH FULL;
Posted by: Guest on June-07-2021

Code answers related to "postgres how can i update all foreign keys referencing a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language