在 SQL Server 中使用数据透视表作为视图
我有一个在 SQL 中准备的数据透视表,但无法在 View 中使用它。我正在使用 SQL Server 2008。
I have a pivot table that I prepared in SQL, but I can't use it in View. I'm using SQL Server 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅这个有点相关的问题的答案:
sql-pivoted-table-is-read-only-and-cells-cant-be-edited
您需要通过 INSTEAD OF 触发器使视图可更新,并且使用该触发器有特定条件,例如数据透视表视图完全可识别源记录列。
See this answer to a somewhat related question:
sql-pivoted-table-is-read-only-and-cells-cant-be-edited
You need to make the view updateable via an INSTEAD OF trigger, and there are specific conditions to using that trigger, such as the pivot-table view being fully identifiable to source record-column.