常用数据类型
整数:tinyint、int、bigint
小数:decimal、
字符串:char、varchar、text
增
insert into 表名(列名,列名)values(值,值);
删
delete from 表名;
delete from 表名 where 条件; #条件为:列名=值
delete from 表名 where id=3;
改
update 表名 set 列名=值;
update 表名 set 列名=值 where 条件; #条件为:列名=值
查
select * from 表名;
select 列名 from 表名;
select 列名 from 表名 where 条件; #条件为:列名=值