CREATE TABLE Product ( id int, product_type VARCHAR(32) ); INSERT INTO Product(id,product_type) VALUES (2, 'clothes'); SELECT * FROM Product;