whats the problem? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

whats the problem?

CREATE TABLE customer (customer_id CHAR(9) , name VARCHAR(20) , PRIMARY KEY(customer_id)); INSERT INTO customer VALUES ('123456789' , 'Yahel'); INSERT INTO customer VALUES ('987654321' , 'Gilad'); CREATE TABLE orders (item_id CHAR(4) , customer_id CHAR(9) , PRIMARY KEY(customer_id) , FOREIGN KEY(customer_id) REFERENCES customer(customer_id)); INSERT INTO orders VALUES ('6789' , '123456789'); INSERT INTO orders VALUES ('1234' , '123456789'); INSERT INTO orders VALUES ('4367' , '123456789'); INSERT INTO orders VALUES ('2314' , '987654321'); INSERT INTO orders VALUES ('1986' , '987654321'); INSERT INTO orders VALUES ('5467' , '987654321'); SELECT * FROM orders;

14th Sep 2020, 6:39 PM
Yahel
Yahel - avatar
5 Answers
0
I'm not sure if you can have the same column as both Primary and Foreign key. Try making the item_id as Primary key in table 'orders' and see if it works. Also share with us the error message you get after executing the query.
14th Sep 2020, 7:24 PM
Avinesh
Avinesh - avatar
0
Avinesh , Thanks! its working now.. btw , i still dont get what is a foreign key is good for and what does it do and when you use it?
14th Sep 2020, 7:40 PM
Yahel
Yahel - avatar
0
Foreign keys are used to establish relationship between two or more tables. It is somewhat like a parent child relationship. It also prevents you from doing unnecessary modifications because it might affect both the tables.
14th Sep 2020, 7:54 PM
Avinesh
Avinesh - avatar
0
Avinesh well explained, thanks!
14th Sep 2020, 8:12 PM
Yahel
Yahel - avatar
0
yahel you're welcome.
14th Sep 2020, 8:20 PM
Avinesh
Avinesh - avatar