查看当前库下所有表查看表结构查看创建表的SQL信息删除表信息查看当前库下所有表show tables;查看表结构查看表结构包含字段信息 desc tb_user;查看创建表的SQL信息show create table user;删除表信息drop table if exists user;