如何在公共表达式表 (CTE) 上强制执行 NOEXPAND?

发布于 2024-11-05 05:09:07 字数 376 浏览 3 评论 0原文

当我运行以下查询时,dbo.VerySlowTableValuedFunction() 被调用多次。我该如何修改它,以便慢速函数仅被调用一次。

with DatesT as (
    ....list of dates....
), slowT as 
(
     select *
     from dbo.VerySlowTableValuedFunction()
)
select DateS, (
     select top 1 [dataseries] 
     from [dataseries] 
     where DateS = p.DateS
     order by DateS desc
 ) as slowData
 from DatesT p

When I run the following query, the dbo.VerySlowTableValuedFunction() gets called many times. How can I modify it so that the slow function gets called only once.

with DatesT as (
    ....list of dates....
), slowT as 
(
     select *
     from dbo.VerySlowTableValuedFunction()
)
select DateS, (
     select top 1 [dataseries] 
     from [dataseries] 
     where DateS = p.DateS
     order by DateS desc
 ) as slowData
 from DatesT p

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小矜持 2024-11-12 05:09:07

从 SQL Server 2008 开始还没有办法做到这一点。
这已被要求作为一项功能...但尚不清楚它是否会包含在 Denali 中。

There is not way to do it as of SQL Server 2008.
This has been requested as a feature... but it's not clear it'll be included in Denali.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文