-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge14_Clothingalterations.sql
39 lines (31 loc) · 1.22 KB
/
challenge14_Clothingalterations.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
CREATE TABLE clothes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
type TEXT,
design TEXT);
INSERT INTO clothes (type, design)
VALUES ("dress", "pink polka dots");
INSERT INTO clothes (type, design)
VALUES ("pants", "rainbow tie-dye");
INSERT INTO clothes (type, design)
VALUES ("blazer", "black sequin");
/*We've created a database of clothes, and decided we need
a price column. Use ALTER to add a 'price' column to the table.
Then select all the columns in each row to see what your table
looks like now.*/
ALTER TABLE clothes ADD price INTEGER;
SELECT * FROM clothes;
/*Now assign each item a price, using UPDATE - item 1 should be 10 dollars,
item 2 should be 20 dollars, item 3 should be 30 dollars. When you're done,
do another SELECT of all the rows to check that it worked as expected.
*/
UPDATE clothes SET price = 10 WHERE id = 1;
UPDATE clothes SET price =20 WHERE id = 2;
UPDATE clothes SET price = 30 WHERE id = 3;
SELECT * FROM clothes;
/*
Now insert a new item into the table that has all three attributes filled in,
including 'price'. Do one final SELECT of all the rows to check it worked.
*/
INSERT INTO clothes (type, design, price)
VALUES ("romper","embroidered",50) ;
SELECT * FROM clothes;