Sample Header Ad - 728x90

I am trying to run this code and I get an error at line 11

0 votes
1 answer
55 views
CREATE TABLE IF NOT EXISTS tblproduct ( id int(8) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, code varchar(255) NOT NULL, image text NOT NULL, price double(10,2) NOT NULL, PRIMARY KEY (id), UNIQUE KEY product_code (code) ) INSERT INTO tblproduct (id, name, code, image, price) VALUES (1, '3D Camera', '3DcAM01', 'product-images/camera.jpg', '1500.00'), (2, 'External Hard Drive', 'USB02', 'product-images/external-hard-drive.jpg', '800.00'), (3, 'Wrist Watch', 'wristWear03', 'product-images/watch.jpg', '300.00');
Asked by G1234 (1 rep)
Jul 27, 2016, 03:52 AM
Last activity: Jul 27, 2016, 04:16 PM