as 可以为字段起别名
as 可以为表起别名(用来区分有相同字段的不同表)
例子:
select distinct 可以去重查询
where 比较运算查询
条件查询
比较运算符
>、<、>=、<=、!=、<>
逻辑运算符
and、or、not
模糊查询(where name like 要查询的数据)
% 替换任意个、_ 替换1个
范围查询
例子:
例子:
-- in (1, 3, 8)表示在一个非连续的范围内
-- 查询 年龄为18、34的姓名
select name,age from students where age in (18,34);
-- not in 不非连续的范围之内
-- 年龄不是 18、34岁的信息
select name,age from students where age not in (18,34);
(注意)select name from students where not age in (18,34);
-- between ... and ...表示在一个连续的范围内
-- 查询 年龄在18到34之间的的信息
select * from students where age between 18 and 34;
-- not between ... and ...表示不在一个连续的范围内
-- 查询 年龄不在在18到34之间的的信息
select * from students where age not between 18 and 34;
select * from syudents where age not between 18 and 3
-- 失败的 select * from students where age not (between 18 and 34);
空值判断
判断为空:is null 判断为非空:is not null
排序查询 order by
select * from 表名 order by 列1 asc|desc [,列2 asc|desc ]
聚合函数
group by 分组查询
limit分页查询
语法: limit 起始页,记录数
select * from students limit 3,2
连接查询——内连接
外连接--- 左连接 | 右连接
自连接
子查询