mysql系列(2)之 DDL语句

时间:2024-09-13 19:36:08

1.创建数据库test1:create database test1;

2.查询系统中都存在哪些数据库:show databases;

3.选择数据库:use test1;

4.查看数据库中所有的表:show tables;

5.删除数据库:drop database test1; 需要注意的是:在mysql中,删除数据库成功后,显示“0 rows affected”。这个提示可以不用管它。

6.创建表:

mysql系列(2)之 DDL语句

7.查看表结构:

mysql系列(2)之 DDL语句

8.删除表:drop table emp;

9.修改表的结构:(1)修改表数据类型

mysql系列(2)之 DDL语句

(2)增加表字段:

mysql系列(2)之 DDL语句

(3)删除表字段:

mysql系列(2)之 DDL语句

(4)字段改名:

mysql系列(2)之 DDL语句

(5)修改字段排列顺序;

(6)更改表名。