SQL 上机实验 创建4个表 学生表,课程表,成绩包,教师表 - 对表进行操做

题目:sql CREATE DATABASE zxl ---------------建表------------ create table Student ( S# char(12) primary key, Sname char(6) not null, Sage INT not null, Ssex char(2) check(Ssex between ' 男' and '女') ) cre
相关文章
相关标签/搜索