|
| 1 | +Create table If Not Exists Players (player_id int, group_id int); |
| 2 | +Create table If Not Exists Matches (match_id int, first_player int, second_player int, first_score int, second_score int) |
| 3 | +; |
| 4 | +Truncate table Players; |
| 5 | +insert into Players (player_id, group_id) values ('10', '2'); |
| 6 | +insert into Players (player_id, group_id) values ('15', '1'); |
| 7 | +insert into Players (player_id, group_id) values ('20', '3'); |
| 8 | +insert into Players (player_id, group_id) values ('25', '1'); |
| 9 | +insert into Players (player_id, group_id) values ('30', '1'); |
| 10 | +insert into Players (player_id, group_id) values ('35', '2'); |
| 11 | +insert into Players (player_id, group_id) values ('40', '3'); |
| 12 | +insert into Players (player_id, group_id) values ('45', '1'); |
| 13 | +insert into Players (player_id, group_id) values ('50', '2'); |
| 14 | +Truncate table Matches; |
| 15 | +insert into Matches (match_id, first_player, second_player, first_score, second_score) values ('1', '15', '45', '3', '0'); |
| 16 | +insert into Matches (match_id, first_player, second_player, first_score, second_score) values ('2', '30', '25', '1', '2'); |
| 17 | +insert into Matches (match_id, first_player, second_player, first_score, second_score) values ('3', '30', '15', '2', '0'); |
| 18 | +insert into Matches (match_id, first_player, second_player, first_score, second_score) values ('4', '40', '20', '5', '2'); |
| 19 | +insert into Matches (match_id, first_player, second_player, first_score, second_score) values ('5', '35', '50', '1', '1'); |
0 commit comments