mirror of
https://github.com/Phundrak/georm.git
synced 2026-07-29 04:19:18 +02:00
9 lines
248 B
SQL
9 lines
248 B
SQL
|
|
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);
|