9 行
無檔案結尾符
227 B
SQL
可執行檔
9 行
無檔案結尾符
227 B
SQL
可執行檔
drop table if exists scores;
|
|
create table scores(
|
|
`ID` bigint primary key auto_increment,
|
|
`text` text not null,
|
|
`points` int not null,
|
|
`team` varchar(4) not null
|
|
)
|
|
DEFAULT CHARACTER SET utf8
|
|
COLLATE utf8_general_ci; |