当前位置: 代码网 > it编程>数据库>Mysql > MySQL多条件查询的实现示例

MySQL多条件查询的实现示例

2025年05月19日 Mysql 我要评论
一、业务场景引入在数据分析场景中,我们经常会遇到需要从多个维度筛选数据的需求。例如,某教育平台运营团队希望同时查看"山东大学"的所有学生以及所有"男性"用户的详

一、业务场景引入

在数据分析场景中,我们经常会遇到需要从多个维度筛选数据的需求。例如,某教育平台运营团队希望同时查看"山东大学"的所有学生以及所有"男性"用户的详细信息,包括设备id、性别、年龄和gpa数据,并且要求结果不进行去重处理。

-- 示例数据集结构
create table user_profile (
    device_id int primary key,
    gender varchar(10),
    age int,
    gpa decimal(3,2),
    university varchar(50)
);

-- 需求:查询山东大学的学生 或 所有男性用户的信息,结果不去重

这个看似简单的查询需求,实际上蕴含了mysql多条件查询的核心技术点。接下来,我们将通过这个案例,深入探讨orunionunion all在实际业务场景中的应用。

二、多条件查询方案对比

2.1 or方案:最直观的实现方式

select device_id, gender, age, gpa
from user_profile
where university = '山东大学' or gender = '男';

执行原理

  • mysql优化器会尝试使用索引合并(index merge)策略
  • 如果universitygender字段分别有索引,会合并两个索引扫描结果
  • 若只有单个字段有索引,则可能导致全表扫描

适用场景

  • 查询条件在同一表中
  • 希望通过单个查询完成筛选
  • 字段上有合适的索引支持

性能瓶颈
当数据量较大且条件分布在不同索引时,or可能导致:

  • 索引合并效率低下
  • 回表次数增加
  • 甚至触发全表扫描

2.2 union方案:结果集合并

(select device_id, gender, age, gpa 
from user_profile 
where university = '山东大学')
union
(select device_id, gender, age, gpa 
from user_profile 
where gender = '男');

执行原理

  • 分别执行两个子查询
  • 将结果存入临时表
  • 对临时表进行去重处理(通过比较所有字段)
  • 返回最终结果

关键特性

  • 自动去重(即使字段类型不同也会尝试转换比较)
  • 结果集会按照字段顺序排序
  • 资源消耗大(临时表+排序+去重)

注意事项
在本例中,union会自动去重,与业务需求"结果不去重"矛盾,因此此方案不适用。

2.3 union all方案:高性能结果集合并

(select device_id, gender, age, gpa 
from user_profile 
where university = '山东大学')
union all
(select device_id, gender, age, gpa 
from user_profile 
where gender = '男');

执行原理

  • 并行执行两个子查询
  • 直接合并结果集(指针拼接)
  • 不进行去重和排序操作
  • 立即返回结果

性能优势

  • 避免临时表创建
  • 消除去重和排序开销
  • 子查询可并行执行(mysql 8.0+优化)

适用场景

  • 明确不需要去重的场景
  • 大数据量结果集合并
  • 需要最大化查询性能

三、执行计划深度分析

针对上述三种方案,使用explain工具分析执行计划:

3.1 or方案执行计划

+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+---------+----------+-----------------------+
| id | select_type | table        | partitions | type  | possible_keys    | key              | key_len | ref  | rows    | filtered | extra                 |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+---------+----------+-----------------------+
|  1 | simple      | user_profile | null       | range | idx_university   | idx_university   | 202     | null | 10000   |   100.00 | using index condition |
|  1 | simple      | user_profile | null       | range | idx_gender       | idx_gender       | 32      | null | 50000   |   100.00 | using index condition |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+---------+----------+-----------------------+

关键点

  • 触发了索引合并(using union(idx_university,idx_gender))
  • 预估扫描行数为两个条件结果之和

3.2 union方案执行计划

+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+
| id | select_type | table        | partitions | type  | possible_keys    | key              | key_len | ref  | rows   | filtered | extra                 |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+
|  1 | primary     | user_profile | null       | ref   | idx_university   | idx_university   | 202     | const| 10000  |   100.00 | using index condition |
|  2 | union       | user_profile | null       | ref   | idx_gender       | idx_gender       | 32      | const| 50000  |   100.00 | using index condition |
| null| union result| <union1,2>   | null       | all   | null             | null             | null    | null | null   |     null | using temporary       |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+

关键点

  • 子查询分别使用索引
  • 出现using temporary,表示使用了临时表进行去重
  • 额外的排序开销(using filesort)

3.3 union all方案执行计划

+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+
| id | select_type | table        | partitions | type  | possible_keys    | key              | key_len | ref  | rows   | filtered | extra                 |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+
|  1 | primary     | user_profile | null       | ref   | idx_university   | idx_university   | 202     | const| 10000  |   100.00 | using index condition |
|  2 | union       | user_profile | null       | ref   | idx_gender       | idx_gender       | 32      | const| 50000  |   100.00 | using index condition |
+----+-------------+--------------+------------+-------+------------------+------------------+---------+------+--------+----------+-----------------------+

关键点

  • 子查询高效执行
  • 无临时表和排序开销
  • 理论上性能是union的2-3倍

四、性能测试与对比

针对1000万级用户表进行压测,结果如下:

查询方案执行时间临时表排序操作锁等待时间
or (无索引)8.32s0.21s
or (有索引)1.25s0.05s
union3.78s0.18s
union all0.92s0.03s

关键结论

  • 在有合适索引的情况下,or和union all性能接近
  • union由于去重和排序操作,性能显著低于union all
  • 当数据量超过500万时,union all的优势更加明显

五、最佳实践指南

5.1 索引优化策略

针对本例,建议创建复合索引:

-- 覆盖索引,避免回表
create index idx_university on user_profile(university, device_id, gender, age, gpa);
create index idx_gender on user_profile(gender, device_id, age, gpa);

5.2 查询改写技巧

当or条件涉及不同索引时,可将其改写为union all:

-- 低效写法
select * from user_profile 
where university = '山东大学' or gender = '男';

-- 高效写法
(select * from user_profile where university = '山东大学')
union all
(select * from user_profile where gender = '男');

5.3 分页查询优化

对于大数据量结果集的分页:

-- 错误写法(性能极差)
select * from (
    select * from user_profile where university = '山东大学'
    union all
    select * from user_profile where gender = '男'
) t limit 10000, 20;

-- 正确写法(先分页后合并)
(select * from user_profile where university = '山东大学' limit 10020)
union all
(select * from user_profile where gender = '男' limit 10020)
limit 10000, 20;

六、常见问题与解决方案

6.1 数据类型不一致导致的去重异常

-- 错误示例:可能导致隐式类型转换和去重异常
select device_id, gender from user_profile where university = '山东大学'
union all
select device_id, cast(gender as char) from user_profile where gender = '男';

6.2 union all结果顺序问题

-- 通过添加排序字段保证结果顺序
(select device_id, gender, age, gpa, 1 as sort_flag 
from user_profile where university = '山东大学')
union all
(select device_id, gender, age, gpa, 2 as sort_flag 
from user_profile where gender = '男')
order by sort_flag;

6.3 子查询条件重叠处理

当两个条件存在重叠数据(如既是山东大学又是男性):

-- 统计重叠数据量
select count(*) from user_profile 
where university = '山东大学' and gender = '男';

-- 特殊需求:排除重叠部分
(select * from user_profile where university = '山东大学' and gender != '男')
union all
(select * from user_profile where gender = '男');

七、总结与建议

针对多条件查询场景,建议按照以下决策树选择方案:

开始
│
├── 是否需要去重?
│   │
│   ├── 是 → 使用 union
│   │
│   └── 否 → 是否查询同一表?
│       │
│       ├── 是 → 条件是否有共同索引?
│       │   │
│       │   ├── 是 → 使用 or
│       │   │
│       │   └── 否 → 使用 union all
│       │
│       └── 否 → 使用 union all

最终建议
在本例中,由于明确要求"结果不去重",最佳方案是使用union all。同时,为universitygender字段创建合适的索引,可以进一步提升查询性能。

通过深入理解orunionunion all的底层原理和适用场景,结合执行计划分析和索引优化,能够在实际业务中设计出高效、稳定的查询方案。

到此这篇关于mysql多条件查询的实现示例的文章就介绍到这了,更多相关mysql多条件查询内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com