Answers for "add foreign key to existing table postgres"

SQL
0

add foreign key to existing table postgres

ALTER TABLE table_a
ADD FOREIGN KEY (col_table_a) REFERENCES table_b(pk_table_b);
Posted by: Guest on March-18-2022

Code answers related to "add foreign key to existing table postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language