6 lines
74 B
MySQL
6 lines
74 B
MySQL
|
create table t_score(
|
||
|
sid int,
|
||
|
cid int,
|
||
|
score decimal(5,2)
|
||
|
);
|