mysql 查询语句
2021/7/7 2:04:43
本文主要是介绍mysql 查询语句,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
mysql 查询语句
select * from school;
指定查询列
select id,name from school;
起别名
select id,name as 姓名,sex as 性别,age as 年龄 from student;
去重查询
select distinct sex from student;
where查询过滤
select * from student where sex='男' and age>18;
比较运算符 < <= > >= !=
select * from student where age<18; select * from student where age<=20; select * from student where age>18; select * from student where age>=18; select * from student where age!=18;
逻辑运算符 (AND,OR, NOT)
select * from student where age>18 and age<20;
select * from student where age<19 or age>20;
select * from student where `name` not like "王五";
范围运算符 BETWEEN
select * from student where age between 18 and 20;
列表运算符 IN
select * from student where age in(19,20);
非条件(!=)
select * from student where `name` != "王五";
模糊查询 LIKE
通配符: %任意多个字符,_单个字符,[]指定范围的单个字符,[^]不在指定范围的单个字符
select * from student where name like '%小%';
order by排序语句
asc升序(默认),desc降序
select *from student order by age desc;
group by语句
统计函数
COUNT 求组中项数 SUM 求和 AVG 求平均值 MAX 求最大值 MIN 求最小值
select class_id,avg(age),max(age) from student group by class_id;
操作多表数据
join语句
内连接
select * from student join class on class.id=student.class_id;
左外连接
select * from student left outer join class on class.id=student.class_id;
右外连接
select * from student right outer join class on class.id=student.class_id;
left join语句
select student.id, student.name, class.name as class_name from student left join class on student.class_id=class.id;
这篇关于mysql 查询语句的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20部署MySQL集群入门:新手必读指南
- 2024-11-20部署MySQL集群教程:初学者指南
- 2024-11-20部署MySQL集群项目实战:新手教程
- 2024-11-20部署MySQL集群资料:新手入门教程
- 2024-11-20MySQL集群部署教程:入门级详解
- 2024-11-20MySQL集群教程:入门与实践指南
- 2024-11-20部署MySQL集群教程:新手入门指南
- 2024-11-20MySQL读写分离教程:轻松入门
- 2024-11-20部署MySQL集群入门:一步一步搭建你的数据库集群
- 2024-11-19部署MySQL集群学习:入门教程