MySQL中的DDL语句

第一题

输入密码登录mysql,创建数据库zoo,转换到zoo数据库,

mysql 复制代码
mysql> create database zoo character set gbk;
mysql> use zoo

查看创建数据库zoo信息

mysql 复制代码
mysql> show create database zoo;

删除数据库zoo

mysql 复制代码
mysql> drop database zoo

第二题

先创建数据库db_system,接着创建两张表

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 '职位');
mysql 复制代码
>create table salary(
->id int primary key auto increment comment'id',
->userld int not null comment'用户id',
->basesalary float not null comment'基本工资',
->month int not null comment'月份',
->allowances float not null default 0 comment'补贴');

第三题

alter的基本命令,add、modify、drop、rename、change...

1、

mysql 复制代码
mysql>alter table user add image tinyblob

2、

mysql 复制代码
mysql> alter table user modify job varchar(60);

3、

mysql 复制代码
mysql> alter table user drop column gender;

4、

mysql 复制代码
mysal> alter table salary rename usersalary

5、

mysql 复制代码
mysql> alter table user convert to character set utf8.

6、

mysql 复制代码
mysql> alter table user change column name username char(20) not null,
相关推荐
兩尛1 小时前
订单状态定时处理、来单提醒和客户催单(day10)
java·前端·数据库
web2u1 小时前
MySQL 中如何进行 SQL 调优?
java·数据库·后端·sql·mysql·缓存
Elastic 中国社区官方博客2 小时前
使用 Elasticsearch 导航检索增强生成图表
大数据·数据库·人工智能·elasticsearch·搜索引擎·ai·全文检索
小金的学习笔记2 小时前
RedisTemplate和Redisson的使用和区别
数据库·redis·缓存
新知图书2 小时前
MySQL用户授权、收回权限与查看权限
数据库·mysql·安全
文城5212 小时前
Mysql存储过程(学习自用)
数据库·学习·mysql
沉默的煎蛋3 小时前
MyBatis 注解开发详解
java·数据库·mysql·算法·mybatis
呼啦啦啦啦啦啦啦啦3 小时前
【Redis】事务
数据库·redis·缓存
HaoHao_0103 小时前
AWS Serverless Application Repository
服务器·数据库·云计算·aws·云服务器
C语言扫地僧3 小时前
MySQL 事务及MVCC机制详解
数据库·mysql