Is a MySQL view faster than a normal query?(MySQL 视图是否比普通查询更快?)
问题描述
我有一个使用许多连接(实际上是 8 个)的复杂查询.我正在考虑将其简化为视图.经过一些研究,我可以看到简单性和安全性的好处.但我没有看到任何提及速度的内容.
I have a complex query using many joins (8 in fact). I was thinking of simplifying it into a view. After a little research I can see the benefits in simplicity and security. But I didn't see any mentions of speed.
视图是否像准备好的语句一样工作,其中查询是预编译的?使用视图是否有任何显着的性能提升?
Do views work like prepared statements, where the query is pre-compiled? Is there any notable performance gain from using views?
推荐答案
不,视图只是存储的文本查询.您可以对其应用WHERE 和ORDER,计算执行计划时会考虑这些子句.
No, a view is simply a stored text query. You can apply WHERE and ORDER against it, the execution plan will be calculated with those clauses taken into consideration.
这篇关于MySQL 视图是否比普通查询更快?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 视图是否比普通查询更快?
基础教程推荐
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
