1

我正在尝试使用 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' 附近的语法不正确。

有没有办法做我在这里尝试的事情?我试过用谷歌搜索这个主题,但遇到了死胡同——任何建议都将不胜感激!

4

2 回答 2

2

我认为您想将“ property”从UPDATE语句的一部分中取出(因为您正在通过 CTE 进行更新)并将SET子句放在FROM

update  lease_period lp
set     lp.scca_broad_category_code = r.scca_broad_category_code
from    cte_reclassified r
where lp.lease_id = r.lease_id
于 2012-07-30T02:02:19.897 回答
1

您不需要在更新语句上创建别名

关于它的语法:Update [TableName] SET [ColumnName]='New Value' WHERE ColumnName='Filter'

看看@Robin Day 是如何完成这个 SO 帖子的:

SELECT 中的 SQL Server 更新

此致

于 2012-07-30T02:28:09.873 回答