Auto commit
This commit is contained in:
parent
67b1d802c2
commit
a4e5ecdb04
52
2208/练习5 综合练习.md
Normal file
52
2208/练习5 综合练习.md
Normal file
@ -0,0 +1,52 @@
|
||||
### 一、创建表
|
||||
|
||||
#### 1、创建一张员工表employee
|
||||
|
||||
字段 类型
|
||||
id 整形
|
||||
NAME 字符型
|
||||
gender 字符型
|
||||
birthday 日期型
|
||||
entry_date 日期型
|
||||
job 字符型
|
||||
salary 小数型
|
||||
RESUME 文本
|
||||
|
||||
#### 2、创建一张员工表employee2
|
||||
|
||||
字段 类型
|
||||
id 整形
|
||||
NAME 字符型
|
||||
gender 字符型
|
||||
birthday 日期型
|
||||
entry_date 日期型
|
||||
job 字符型
|
||||
salary 小数型
|
||||
RESUME 文本
|
||||
要求:把id 设置成主键,并且自动增长。NAME不允许为空。
|
||||
|
||||
### 二、删除表
|
||||
|
||||
删除employee2表
|
||||
|
||||
### 三、数据表的结构的修改
|
||||
|
||||
1、在上面员工表的基本上增加一个image列。
|
||||
|
||||
2、修改job列,使其长度为60。
|
||||
|
||||
3、删除gender列。
|
||||
|
||||
4、表名改为USER。
|
||||
|
||||
5、修改表的字符集为utf8
|
||||
|
||||
6、列名NAME修改为username
|
||||
|
||||
### 四、查看表结构
|
||||
|
||||
1、查看数据库内的所有表
|
||||
|
||||
2、查看employee的建表语句
|
||||
|
||||
3、查看employee的表结构
|
Loading…
x
Reference in New Issue
Block a user