Answers for "multiple foreign key sql"

SQL
2

multiple foreign key sql

CREATE TABLE table1 (
  column1 int NOT NULL,
  column2 int NOT NULL,
  FOREIGN KEY(column1) REFERENCES table2(column3),
  FOREIGN KEY(column2) REFERENCES table3(column4)
);
Posted by: Guest on April-07-2021

Code answers related to "multiple foreign key sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language