mysql建立表格的语句

create table Score(
name varchar(50) not null,
classid int(12) not null,
quiz    int(12),
exam    int(12),
hw      int(12),
t1      datetime,
t2      datetime,
t3      datetime ) comment = '成绩表';
发布了1670 篇原创文章 · 获赞 357 · 访问量 234万+

猜你喜欢

转载自blog.csdn.net/tony2278/article/details/104512650