企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
语句形式: ``` drop table 表名; ``` ![](https://img.kancloud.cn/6c/91/6c9185dc0f9219721950ac0ec4821242_337x50.jpg) ## 有关表的基本操作的总结: 建表: ``` create table 表名 ( 字段名 字段类型 [字段属性], 字段名 字段类型 [字段属性], ...... ) [ charset=编码名称] [engine=表类型名称]; ``` 表类型名称可用的也就几个,比如: InnoDB(默认的), MyIsam, BDB, memory, 显示所有表: ``` show tables; ``` 显示某个表的创建语句: ``` show create table 表名; ``` 显示某个表的结构: ``` desc 表名; ``` 删除表: ``` drop table 表名; ```