-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert-data.sql
31 lines (21 loc) · 1.09 KB
/
insert-data.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
-- Insert rows of data
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Manchester United', 'Premier League', 20, 5, 3);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Barcelona', 'La Liga', 18, 7, 5);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Bayern Munich', 'Bundesliga', 22, 2, 4);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Juventus', 'Serie A', 19, 5, 4);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Paris Saint-Germain', 'Ligue 1', 21, 4, 3);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Liverpool', 'Premier League', 18, 7, 5);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Real Madrid', 'La Liga', 17, 8, 5);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Atletico Madrid', 'La Liga', 16, 9, 5);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Inter Milan', 'Serie A', 18, 7, 5);
INSERT INTO soccer (team_name, league, wins, losses, draws)
VALUES ('Chelsea', 'Premier League', 17, 8, 5);