0
How to create a table with foreign key constraint
There are two tables salesman and order, salesman id used as foreign key in order table
1 Odpowiedź
0
And most probably salesman id is your primary key in the table salesman.
You can do the following while creating the table order-
Foreign key (salesman_id)
References salesman (salesman_id)