Math, asked by rakshithaponugoti, 2 months ago

select suitable option on foreign key in a column​

Answers

Answered by anurag21286
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