增:
create table 表名(字段名+数据类型+特性);
删:
drop table 表名
改:
rename table 表名 to 新表名;
alter table 表名 character set gbk;
查:
show tables;
desc 表名;
show create table 表名;
增:
create table 表名(字段名+数据类型+特性);
删:
drop table 表名
改:
rename table 表名 to 新表名;
alter table 表名 character set gbk;
查:
show tables;
desc 表名;
show create table 表名;