| 123456789 |
- CREATE TABLE IF NOT EXISTS products (
- product_id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
- product_name VARCHAR(50),
- retail_price DOUBLE
- );
- INSERT INTO products (product_name, retail_price) values ('Cinturon de cuero', 450);
- INSERT INTO products (product_name, retail_price) values ('Bocina bluetooth', 1200);
- INSERT INTO products (product_name, retail_price) values ('Lampara', 670);
|