1.创建数据库 Market,在 Market 中创建数据表customers,customers表结构如表4.6所示,按要求进行操作。
(1)创建数据库Market。
create database Market;
(2)创建数据表customers,在c_num字段上添加主键约束和自增约束,在c_birth字段上添加非空约束。
create table customers(
-> c_num INT(11) primary key auto_increment,
-> c_name VARCHAR(50),
-> c_contact VARCHAR(50),
-> c_city VARCHAR(50),
-> c_birth DATETIME not null);
(3)将c_contact字段插入到c_birth字段后面。
alter table customers modify c_contact varchar(50) after c_birth;
(4)将c_name字段数据类型改为VARCHAR(70)。
alter table customers modify c_name varchar(70);
(5)将c_contact字段改名为c_phone。
alter table customers change c_contact c_phone varchar(50);
(6)增加c_gender字段,数据类型为CHAR(1)。
alter table customers add c_gender char(1);
(7)将表名修改为customers_info。
rename table customers to customers_info;
(8)删除字段c_city。
alter table customers_info drop c_city;
(9)修改数据表的存储引擎为MyISAM。
alter table customers_info engine=myisam;
2.在 Market 中创建数据表orders,orders表结构如表4.7所示,按要求进行操作。
(1)创建数据表orders,在o_num字段上添加主键约束和自增约束,在c_id字段上添加外键约束,关联customers表中的主键c_num。
注:因为上一题已经把customers的改为了customers_info,所以我们可以复制一份上表命为customers.
create table customers like customers_info;
create table orders(
-> o_num int(11) primary key auto_increment,
-> o_date date,
-> c_id int(11),
-> foreign key(c_id) references customers(c_num)
-> )engine=myisam;
(2)删除orders表的外键约束,然后删除表customers。
alter table orders drop foreign key c_id;
drop table orders;
3.创建数据库Team,定义数据表player,语句如下,执行以下操作。
(1)创建一个新账户,用户名为accountl,该用户通过本地主机连接数据库,密码为oldpwd1。授权该用户对Team 数据库中 player表的SELECT和INSERT权限,并且授权该用户对player表的info字段的UPDATE权限。
create user 'account1'@'localhost' identified by 'oldpwd1';
grant select,insert,update(info) on Team.player to 'account1'@'localhost';
(2)创建SQL语句,更改account1用户的密码为newpwd2。
alter user 'account1'@'localhost' identified by 'newpwd2';
(3)创建SQL语句,使用 FLUSH PRIVILEGES重新加载权限表。
FLUSH PRIVILEGES;
(4)创建SQL语句,查看授权给account1用户的权限。
show grants for account1@localhost;
(5)创建SQL语句,收回account1用户的权限。
revoke all on Team.player from 'account1'@'localhost';
(6)创建SQL语句,将account1用户的账号信息从系统中删除。
drop user account1@localhost;