init.sql 401 B

123456789
  1. CREATE TABLE IF NOT EXISTS products (
  2. product_id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
  3. product_name VARCHAR(50),
  4. retail_price DOUBLE
  5. );
  6. INSERT INTO products (product_name, retail_price) values ('Cinturon de cuero', 450);
  7. INSERT INTO products (product_name, retail_price) values ('Bocina bluetooth', 1200);
  8. INSERT INTO products (product_name, retail_price) values ('Lampara', 670);