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() 聚合?


基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01