查看当前数据库中所有表 show tables; 创建表 格式:create table 表名(列以及类型) 示例:create table student1(id int auto_increment primary key , name varchar(20) not null , age int not null , gender bit default 1 , address varchar(20) , isDelete bit default 0); 说明:auto_increment 表示自增 primary key 主键