Why can#39;t indexed views have a MAX() aggregate?(为什么索引视图不能有 MAX() 聚合?)
问题描述
我一直在尝试一些索引视图并给我留下了深刻的印象,但我几乎总是需要一个最大值或一个最小值,并且不明白为什么它不能用于这些,谁能解释为什么?
I have been trying out a few index views and am impressed but I nearly always need a max or a min as well and can not understand why it doesn't work with these, can anyone explain why?
我知道他们是不允许的,我就是不明白为什么!!!允许计数等为什么不允许 MIN/MAX,我正在寻找解释...
I KNOW they are not allowed, I just can't understand why!!! Count etc. is allowed why not MIN/MAX, I'm looking for explanation...
推荐答案
不允许使用这些聚合,因为它们不能仅根据更改的值重新计算.
These aggregates are not allowed because they cannot be recomputed solely based on the changed values.
某些聚合,例如 COUNT_BIG()
或 SUM()
,只需查看更改的数据即可重新计算.这些在索引视图中是允许的,因为如果基础值发生变化,则可以直接计算该变化的影响.
Some aggregates, like COUNT_BIG()
or SUM()
, can be recomputed just by looking at the data that changed. These are allowed within an indexed view because, if an underlying value changes, the impact of that change can be directly calculated.
其他聚合,例如 MIN()
和 MAX()
,不能仅通过查看正在更改的数据来重新计算.如果您删除当前为最大值或最小值的值,则必须在整个表中搜索并找到新的最大值或最小值.
Other aggregates, like MIN()
and MAX()
, cannot be recomputed just by looking at the data that is being changed. If you delete the value that is currently the max or min, then the new max or min has to be searched for and found in the entire table.
同样的原则适用于其他聚合,如 AVG()
或标准变体聚合.SQL 不能仅根据更改的值重新计算它们,而是需要重新扫描整个表以获取新值.
The same principle applies to other aggregates, like AVG()
or the standard variation aggregates. SQL cannot recompute them just from the values changed, but needs to re-scan the entire table to get the new value.
这篇关于为什么索引视图不能有 MAX() 聚合?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么索引视图不能有 MAX() 聚合?


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01