关键字 table

语法格式

  1. 创建表
  2. create table;
  3. 删除表
  4. drop table 表名;
  5. 查看数据库中所有的表
  6. show tables;
  7. 查看表结构
  8. show columns from 表名;
  9. 修改表结构
  10. alter table

备份表

  1. create table 新表名 as select * from 旧表名;