1.创建学生系统管理数据库XSCJ。
create database XSCJ;
2.在数据库XSCJ中创建学生基本情况表XS。
use XSCJ; create table XS( 学号 char(6) not null primary key, 姓名 char(8) not null , 专业名 varchar(20) null , 性别 tinyint(1) not null , 出生时间 date not null , 总学分 tinyint(1) null , 照片 blob null , 备注 text null );
3.在数据库XSCJ中创建课程表KC。
use XSCJ; create table KC( 课程号 char(3) not null primary key, 课程名 char(16) not null , 开课学期 tinyint(1) not null , 学时 tinyint(1) not null , 学分 tinyint(1) null );
4.在数据库XSCJ中创建成绩表XS_KC。
use XSCJ; create table XS_KC( 学号 char(6) not null, 课程号 char(3) not null, 成绩 tinyint null, 学分 tinyint null, primary key (学号,课程号) );
5.在表XS中增加“奖学金等级”列并将表中的“姓名”列删除。
use XSCJ; alter table XS add 奖学金等级 tinyint null , drop column 姓名;
6.将XS表重命名为student.
use xscj; alter table XS rename to student;
7.创建KC表的一个名为kc_ copy1的副本。
create table kc_copy1 like KC;
8.创建表XS_ KC的一个名为cj_copy2的副本,并且复制其内容。
create table cj_copy2 as (select * from XS_KC);
9.删除表kc_copy1。
drop table kc_copy1;
10.显示XSCJ数据库建立的数据表文件。
use XSCJ; show tables;
11.用DESCRIBE语句查看XS表的列信息。
describe XS;
因为第六步时已经将XS表重命名为student,故报错
describe studen;
12.查看XS表“学号”列的信息。
desc studet 学号;
(因XS表已被重命名为student,故此查看student表“学号”的信息)