1.用SQL语句创建学生表student,定义主键,姓名不能重名,性别只能输入男或女,所在系的默认值是“计算机”。
mysql> create table student(
-> Sno int primary key auto_increment,
-> Sname varchar(255) not null unique,
-> Ssex char(20) check (Ssex='男' or Ssex='女'),
-> Sage int,
-> Sdept varchar(20) default '计算机');
Query OK, 0 rows affected (0.01 sec)
2.修改student 表中年龄 (age) 字段属性,数据类型由int 改变为smallint。
mysql> alter table student modify Sage smallint;
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0
3.为SC表建立按学号 (sno) 和课程号 (cno) 组合的升序的主键索引,索引名为SC_INDEX 。
mysql> create table Course(
-> Cno int primary key comment '课程号',
-> Cname varchar(10) unicode comment '课程名');
Query OK, 0 rows affected, 1 warning (0.01 sec)
mysql> create table SC(
-> Sno int comment '学号',
-> Cno int comment '课程号',
-> score int comment '成绩',
-> primary key (Sno,Cno));
Query OK, 0 rows affected (0.00 sec)
mysql> create index SC_INDEX on SC(Sno,Cno);
Query OK, 0 rows affected (0.01 sec)
Records: 0 Duplicates: 0 Warnings: 0
?
4.创建一视图 stu_info,查询全体学生的姓名,性别,课程名,成绩。
mysql> create view stu_info as select student.Sname as '姓名',student.Ssex as '性别',SC.Cno as
'课程名',SC.Score as '成绩'from student,Course,SC;
Query OK, 0 rows affected (0.01 sec)
?