MySQL数据库例题:学生表-课程表-成绩表【查询成绩】

//创建学生表   mysql> create table student(       -> sno char(5) not null primary key,       -> sname char(8) not null,       -> ssex char(1) check(ssex='1' or ssex='0'),       -> sage tinyint(2),       ->
相关文章
相关标签/搜索