mirror of
https://github.com/Phundrak/georm.git
synced 2025-08-31 14:45:36 +00:00
9 lines
248 B
MySQL
9 lines
248 B
MySQL
|
INSERT INTO products (name, price, discount_percent)
|
||
|
VALUES ('Laptop', 999.99, 10);
|
||
|
|
||
|
INSERT INTO products (sku_number, name, price, discount_percent)
|
||
|
VALUES (5000, 'Mouse', 29.99, 5);
|
||
|
|
||
|
INSERT INTO products (name, price)
|
||
|
VALUES ('Keyboard', 79.99);
|