查询当前数据库中的所有表
show tables;
查看指定表结构
desc 'test';('test'是表名)通过这条指令,我们可以查看到指定表的字段,字段的类型、是否可以为NULL,是否存在默认值等信息。
查询指定表的建表语句
show create table 'test';通过这条指令,主要是用来查看建表语句的,而有部分参数我们在创建表的时候,并未指定也会查询到,因为这部分是数据库的默认值,如:存储引擎、字符集等。
创建表结构
create table tb_user(
id int comment'编号’,
name varchar(50) comment'姓名',
age int commnet'年龄’,
gender varchar(1)'性别'
)comment'用户表';
添加字段
alter table 'test' add name varchar(20) comment'名字’;
修改字段名和字段类型
alter table emp change nickname username varchar(30) comment'昵称’;
删除字段
alter table emp drop username;
修改表名
alter table emp rename to employee;
删除表
drop table if exists tb_user;
删除指定表并重新创建表
truncate table 'test';