New SQL File
New SQL File
DESC Customer;
CREATE table Product(
Product_Id int Primary Key,
Product_Name char(20) Not null,
Product_type char(20) Not null,
Unit_Price char(20) Not null,
Qty char(20) default 0
);
DESC Product;
VALUES(111,11,1,201,14,10);
INSERT INTO Order_Details(Trans_Id, Order_Id, Cust_Id, Product_Id, Unit_Price, Qty)
VALUES(222,34,2,202,40,4);
INSERT INTO Order_Details(Trans_Id, Order_Id, Cust_Id, Product_Id, Unit_Price, Qty)
VALUES(333,32,2,203,2000,1);
INSERT INTO Order_Details(Trans_Id, Order_Id, Cust_Id, Product_Id, Unit_Price, Qty)
VALUES(444,21,1,203,80000,1);