Computer Science, asked by Vansh9878, 10 months ago

Write a query to create the orders table with salesman_id as foreign key.

Answers

Answered by angelruhi
0

CREATE TABLE ORDER

(

SALESMAN_ID FOREIGN KEY

);

hope it's helpful.....

Answered by tripathi64
0

Answer:

Explanation:

CREATE TABLE order

(

column1    data_type[(size)] ,  

column2    data_type[(size)] ,

salesman_id INT FOREIGN KEY REFERENCES [primary_key_table] (column_list_of_primary_key_table)

);

Similar questions