基本操作
创建库:create database 库名;
删除库:drop database 库名;
创建表:create table 表名;
查询表结构:desc 表名;
在表中添加数据:insert into 表名 values (值1,值2,值3);
insert into 表名(字段,字段)values (值1,值2,值3),(值4,值5,值6);
删除表中的数据:delete from 表名;
delete from 表名 where 条件;
删除表:drop table 表名;
修改表中的数据:update 表名 set 字段=值;
update 表名 set 字段=值 where;
显示所有的库:show databases;
显示所有的表:show tables;
简单查询
select 字段 from 表名
where 条件