Answers for "add foreign key mysql to existing table without coding"

SQL
8

alter table add foreign key mysql

ALTER TABLE orders
ADD 
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE;
Posted by: Guest on May-29-2020

Code answers related to "add foreign key mysql to existing table without coding"

Code answers related to "SQL"

Browse Popular Code Answers by Language