Skip to content

Commit

Permalink
Adicionando o comando para selecionar campos especifico da tabela
Browse files Browse the repository at this point in the history
  • Loading branch information
laryscampark committed Apr 16, 2024
1 parent 3504c93 commit 674b745
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ CREATE TABLE orders (

SELECT * FROM orders

SELECT id, account_id, occurred_at
FROM orders;

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);
Expand Down

0 comments on commit 674b745

Please sign in to comment.