目录
一增删改查
1.查找数据表
select * from 数据表的名称 // 这是查找全部
这个是查找指定的:
SELECT column_name,column_name FROM table_name [WHERE Clause] [LIMIT N][ OFFSET M]
2.增
3.删
4.改
二where语句
1.= 等于 select * from text where id = 2 查找text表中id=2的数据
2.!= 不等于 select * from text where id != 2 查找text表中id不为2的数据
3.> 大于 select * from text where id > 2 查找text表中id大于2的数据
4.< 小于 select * from text where id < 2 查找text表中id小于2的数据
5.>= 大于等于 select * from text where id >= 2 查找text表中id大于等于2的数据
6.<= 小于等于 select * from text where id <= 2 查找text表中id小于于等于2的数据
7.between...and... select * from text where id between 2 and 10 查找text表中id从2到10范围内的数据
8.not between...and... select * from text where id not between 2 and 10 查找text表中id从2到10范围外的数据
9.in select * from text where id in(2) 查找text表中id为2的数据
10.not in select * from text where id not in(2) 查找text表中id不为2的数据
11.like select * from text where id like 2 查找text表中id0-2范围内的数据
12.not like select * from text where id not like 2 查找text表中id0-2范围外的数据
13.like select * from text where id like 2,5 查找text表中id2-5范围内的数据
14.like select * from text where id like '%2%' 查找text表中id包含2的数据
15.like select * from text where id like '2_' 查找text表中id 第一位数包含2并且不确定第二位数是什么的数据
16.is null select * from text where id is null 查找text表中id为空的数据
17.is not null select * from text where id is not null 查找text表中id不为空的数据