我正在尝试使用 CTE 中包含的数据更新表。不幸的是,我收到了一个语法错误,我不太清楚为什么。目前的代码是:
declare @period_id integer =
(
select period_id
from property.period
where getdate() between period_start and period_end
)
;with cte_reclassified as
(
select building_id ,
lease_id ,
scca_broad_category_code ,
scca_fine_categories_code ,
scca_notes_code ,
scca_sales_group_code ,
scca_uplift
from property.lease_period
where period_id = @period_id
)
update property.lease_period lp
from cte_reclassified r
set lp.scca_broad_category_code = r.scca_broad_category_code
where lp.lease_id = r.lease_id
and lp.building_id = r.building_id
我收到的语法错误是:
消息 102,级别 15,状态 1,第 21 行 'lp' 附近的语法不正确。
有没有办法做我在这里尝试的事情?我试过用谷歌搜索这个主题,但遇到了死胡同——任何建议都将不胜感激!