Saved Bookmarks
| 1. |
Select suitable option on foreign key in a column |
|
Answer» ong>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); |
|