增:
insert into 表名 values();alter table 表名 add 列名 列类型;删:drop table 表名;alter table 表名 drop 列名;delete from 表名 where 条件;update 表名 set 列名=NULL where 条件;改:alter table 表名 rename to 新表名;alter table 表名 change 原列名 新列名 列类型;alter table 表名 modify 列名 列类型;update 表名 set 列名="新值" where 条件;查:select * from 表名;desc 表名;show tables;show databases;