Inventory Create table inventory ( Product tinytext not null, Quantity tinytext not null, Id int (4) default '0' not null auto_increment, Description tinytext not null, Price float (10, 2) default '0. 00' not null, Category char (1) default ''not null, Key id (id ), Primary key (id ), Key price (price) ); Insert into inventory values ('Hard disk ', '5', '1', '80 GB', '123', '1 '); Insert into inventory values ('CPU ', '12', '2', 'p4-2.4g', '123', '1 '); Insert into inventory values ('DVD-rom ', '7', '3', '12x', '123', '1 '); Insert into inventory values ('motherboard www.111cn.net ', '3', '4', 'ASUS', '123', '2 '); Insert into inventory values ('dashboard ', '6', '5', '64m', '123', '1 '); Insert into inventory values ('recorders ', '4', '6', '52w', '123', '1 '); Shopping Create table shopping ( Session tinytext not null, Product tinytext not null, Quantity tinytext not null, Card tinytext not null, Id int (4) default '0' not null auto_increment, Key id (id ), Primary key (id) ); Shopper Create database shopper; Use shopper; Create table shopping ( Session tinytext not null, Product tinytext not null, Quantity tinytext not null, Card tinytext not null, Id int (4) default '0' not null auto_increment, Key id (id ), Primary key (id) ); Create table inventory ( Product tinytext not null, Quantity tinytext not null, Id int (4) default '0' not null auto_increment, Description tinytext not null, Price float (10, 2) default '0. 00' not null, Category char (1) default ''not null, Key id (id ), Primary key (id ), Key price (price) ); Insert into inventory values ('Hard disk ', '5', '1', '80 GB', '123', '1 '); Insert into inventory values ('CPU ', '12', '2', 'p4-2.4g', '123', '1 '); Insert into inventory values ('DVD-rom ', '7', '3', '12x', '123', '1 '); Insert into inventory values ('motherboard 111cn.net ', '3', '4', 'ASUS', '123', '2 '); Insert into inventory values ('dashboard ', '6', '5', '64m', '123', '1 '); Insert into inventory values ('recorders ', '4', '6', '52w', '123', '1 ');
|