diff --git a/orders.sql b/orders.sql index ce4a2a9..4255cb0 100644 --- a/orders.sql +++ b/orders.sql @@ -18,6 +18,10 @@ SELECT * FROM orders SELECT id, account_id, occurred_at FROM orders; +SELECT * +FROM orders +LIMIT 10; + INSERT INTO orders (id, account_id, occurred_at, standard_qty, gloss_qty, poster_qty, total, standard_amt_usd, gloss_amt_usd, poster_amt_usd, total_amt_usd) VALUES (1, 1001, '2015-10-06 17:31:14', 123, 22, 24, 169, 613.77, 164.78, 194.88, 973.43); INSERT INTO orders (id, account_id, occurred_at, standard_qty, gloss_qty, poster_qty, total, standard_amt_usd, gloss_amt_usd, poster_amt_usd, total_amt_usd) VALUES