select suitable option on foreign key in a column
Answers
Answered by
0
Answer:
I have been able to add the column and the foreign key constraint using two separate ALTER TABLE commands: ALTER TABLE one ADD two_id integer; ALTER TABLE one ADD FOREIGN KEY (two_id) REFERENCES two(id);
Similar questions