表的基本操作
- 创建表
create table [if not exists] <tableName> ( <columnName> <columnType> [constraints] [comment] , ... <columnName> <columnType> [constraints] [comment] ) ;
- 删除表
drop table [if exists] <tableName> ;
- 修改表结构 alter table
- 添加字段
alter table <tableName> add [column] <columnName> <columnType> [constraints] [comment] ;
- 删除字段
alter table <tableName> drop [column] <columnName> ;
- 修改字段名
alter table <tableName> change <oldName> <newName> <columnType> [constraints] [comment] ;
- 修改 字段类型
alter table <tableName> modify <columName> <columnType> [constraints] [comment] ;
- 修改表 名
alter table <tableName> rename to <newTableName> ; rename table <tableName> to <newTableName> ;
- 查看 当前 database 下所有的表
show tables ;
- 查看 表结构
desc <tableName> | describe <tableName> ;
- 查看 建表语句
show create table <tableName> ;