· 8 years ago · Mar 10, 2018, 02:38 AM
1drop table if exists games;
2create table games (
3 id int not null auto_increment,
4 map varchar(200) not null,
5
6 p1_kills int not null,
7 p2_kills int not null,
8 p3_kills int not null,
9 p4_kills int not null,
10
11 p1_deaths int not null,
12 p2_deaths int not null,
13 p3_deaths int not null,
14 p4_deaths int not null,
15
16
17 primary key (id)
18);