Answers for "how to add a forign key into a table mysql"

SQL
0

mysql remove foreign key constraint

ALTER TABLE jobs DROP FOREIGN KEY constraint_name
Posted by: Guest on August-08-2020
0

create table mysql with foreign key

CREATE TABLE Orders (
    OrderID int NOT NULL,
    OrderNumber int NOT NULL,
    PersonID int,
    PRIMARY KEY (OrderID),
    FOREIGN KEY (PersonID) REFERENCES Persons(PersonID)
);
Posted by: Guest on November-03-2020

Code answers related to "how to add a forign key into a table mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language