forked from CodeYourFuture/Full-Stack-Project-Assessment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.sql
34 lines (24 loc) · 1.33 KB
/
database.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
CREATE TABLE videos (
id SERIAL PRIMARY KEY,
title VARCHAR(255) NOT NULL,
url VARCHAR(255) NOT NULL,
rating INTEGER NOT NULL
);
INSERT INTO videos (title, url, rating)
VALUES ('Never Gonna Give You Up','https://www.youtube.com/watch?v=dQw4w9WgXcQ',23);
INSERT INTO videos (title,url,rating)
VALUES ('The Coding Train','https://www.youtube.com/watch?v=HerCR8bw_GE',230);
INSERT INTO videos (title,url,rating)
VALUES('Mac & Cheese | Basics with Babish','https://www.youtube.com/watch?v=FUeyrEN14Rk',2111);
INSERT INTO videos (title,url,rating)
VALUES('Videos for Cats to Watch - 8 Hour Bird Bonanza','https://www.youtube.com/watch?v=xbs7FT7dXYc',11);
INSERT INTO videos (title,url,rating)
VALUES('Learn Unity - Beginners Game Development Course','https://www.youtube.com/watch?v=gB1F9G0JXOo',211);
INSERT INTO videos (title,url,rating)
VALUES('Cracking Enigma in 2021 - Computerphile','https://www.youtube.com/watch?v=RzWB5jL5RX0',111);
INSERT INTO videos (title,url,rating)
VALUES('Coding Adventure: Chess AI','https://www.youtube.com/watch?v=U4ogK0MIzqk',671);
INSERT INTO videos (title,url,rating)
VALUES('Coding Adventure: Ant and Slime Simulations','https://www.youtube.com/watch?v=X-iSQQgOd1A',76);
INSERT INTO videos (title,url,rating)
VALUES('Why the Tour de France is so brutal','https://www.youtube.com/watch?v=ZacOS8NBK6U',73);