真的是基础中的基础了。
目录
[筛出不同值 select distinct 列 from表编辑 编辑](#筛出不同值 select distinct 列 from表编辑 编辑)
[编辑 select列form 表 where条件编辑](#编辑 select列form 表 where条件编辑)
[and or编辑](#and or编辑)
[order by](#order by)
[编辑筛选+排序:select 列们,逗号隔开from 表 order by 列名编辑](#编辑筛选+排序:select 列们,逗号隔开from 表 order by 列名编辑)
[优先级排序 select a,b from 表 order by a,b 编辑](#优先级排序 select a,b from 表 order by a,b 编辑)
[逆序排:order by 列 desc编辑](#逆序排:order by 列 desc编辑)
[descend下降 ascend上升](#descend下降 ascend上升)
[编辑插入 insert into 表 values 值;insert into 列 values 值编辑](#编辑插入 insert into 表 values 值;insert into 列 values 值编辑)
[insert into 表(需要添加的列名在表后括号内)values (值们)编辑](#insert into 表(需要添加的列名在表后括号内)values (值们)编辑)
[update 表 set 列 =想改成的值 where 条件编辑](#update 表 set 列 =想改成的值 where 条件编辑)
[update 表 set 列1 =想改成的值1 ,列2 =想改成的值2 ......where 条件编辑](#update 表 set 列1 =想改成的值1 ,列2 =想改成的值2 ……where 条件编辑)
[删除delete from------delete from 表 where 条件](#删除delete from——delete from 表 where 条件)
[1.delete from 表](#1.delete from 表)
[2.delete * from 表编辑](#2.delete * from 表编辑)
select列from表
筛出不同值 select distinct 列 from表
加了distinct后
select列form 表 where条件
等于不是==
列名='值' 表示要该项为该值
引号:文本,无需引号:数值
and or
order by
筛选+排序:select 列们,逗号隔开from 表 order by 列名
优先级排序 select a,b from 表 order by a,b
所以只有在第一优先级相等时,才会进入比较第二优先级
逆序排:order by 列 desc
默认是升序的,当然扩充下词汇量
descend下降 ascend上升
插入 insert into 表 values 值;insert into 列 values 值
值的格式:外有括号,里面用逗号隔开,不一定是整整一行