Untitled
Anonymous
plain_text
10/04/2024 4:04 AM
400 B
14
Indexable
CREATE TABLE Book (Book_id int (10) primary key, Title varchar (20), Lang_id int (10), MRP int (10), Publisher_id int (10), Published_date date, Volume int (10), Status varchar (10), FOREIGN KEY (Lang_id) REFERENCES Language (lang_id), FOREIGN KEY (Publisher_id) REFERENCES Publisher (Publisher_id));
Editor is loading...
Leave a Comment