一、数据库
1、登陆数据库
2、创建数据库zoo
mysql> create database zoo;
3、修改数据库zoo字符集为gbk
mysql> use zoo;
mysql> alter database zoo character set gbk;
4、选择当前数据库为zoo
5、查看创建数据库zoo信息
mysql> show create database zoo\g;--------查看数据库信息后边要加\g或\G
6、删除数据库zoo
mysql> drop database zoo;
二、创建表
1、创建一个名称为db_system的数据库
mysql> create database db_system;``
2、在该数据库下创建两张表,具体要求如下
员工表 user
字段 类型 约束 备注
id 整形 主键,自增长 id
NAME 字符型 非空 姓名
gender 字符 非空 性别
birthday 日期型 生日
entry_date 日期型 非空 入职时间
job 字符型 非空 职位
mysql> use db_system;
Database changed
mysql> create table user(
-> id int primary key auto_increment comment'id',
-> NAME char(20) not null comment'姓名',
-> gender char(4) not null comment'性别',
-> birthday date comment'生日',
-> entry_date date not null comment'入职时间',
-> job char(30) not null comment'职位');
员工绩效表 salary
字段 类型 约束 备注
id 整形 主键,自增长 id
userId 整形 非空,外键,关联的是user表的id字段 用户id
baseSalary 小数 非空 基本工资
month 整数 非空 月份
allowances 小数 非空,默认为0 补贴
mysql> create table salary(
-> id int primary key auto_increment comment'id',
-> userId int not null comment'用户id',
-> baseSalary float not null comment'基本工资',
-> month int not null comment'月份',
-> allowances float not null default'0' comment'补贴',
-> foreign key(userId) references user(id));----------外键另外写一条指令
三、修改表
1、在上面员工表的基本上增加一个image列,类型是blob,长度255。
mysql> alter table user
-> add image blob(255);
2、修改job列,使其长度为60。
mysql> alter table user
-> change job job char(60);
3、删除gender列。
mysql> alter table user
-> drop gender;
4、表名salary改为usersalary。
mysql> rename table salary to usersalary;
5、修改表的字符集为utf8;
mysql> alter table user convert to character set utf8;
6、列名name修改为username
mysql> alter table user
-> rename column name to username;