Skip to content

Commit

Permalink
Adicionando o limit
Browse files Browse the repository at this point in the history
  • Loading branch information
laryscampark committed Apr 16, 2024
1 parent 674b745 commit 24f15e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 24f15e1

Please sign in to comment.