"The multi-part identifier could not be bound" 更新语句从 'inner' 设置为 'update' 设置

"The multi-part identifier could not be bound" for update statement from 'inner' set to 'update' set

错误

'The multi-part identifier "ar_update.Id" could not be bound.'

如 sql 脚本中所示的行。

我还尝试了错误连接的其他列,以尝试提示不同的错误并给出相同的错误结果。

Why/How 将 'inner' 处理集限定回 'update' 集?

update ar_update 
   set ar_update.[GLEntry_Amount] = ar_sum.[GLEntry_Amount_sum]
  from [dbo].[ASL_Result_VGO]  as ar_update  

  join (select  ar.[Id]                        as [Id]
               ,ar.[Company Id]                as [Company Id]
               ,ar.[Schedule Name]             as [Schedule Name]       
               ,ar.[Line No_]                  as [Line No_]            
               ,ar.[Row No_]                   as [Row No_]             
               ,ar.[Posting Date]              as [Posting Date]        
               ,ar.[Business Centre Code]      as [Business Centre Code]
               ,ar.[Site Locations Code]       as [Site Locations Code] 

               ,GLEntry_Amount_sum = 
                    (select  sum(are.[GLEntry_Amount])     
                     from    [dbo].[ASL_Result_VGO]  as are
                     where   are.[Company Id]           = ar.[Company Id]  and          
                             are.[Schedule Name]        = ar.[Schedule Name]  and       
                             are.[Posting Date]         = ar.[Posting Date]  and          
                             are.[Business Centre Code] = ar.[Business Centre Code]  and   
                             are.[Site Locations Code]  = ar.[Site Locations Code]  and 
                             are.[Row No_] in ( select * from dbo.udf_range_expand_VGO(ar.[Totaling]) )  
                    )

        from    [dbo].[ASL_Result_VGO]  as ar
        where   ar.[Id] = ar_update.[Id]    -- The multi-part identifier "ar_update.Id" could not be bound.  

       )  ar_sum  on  ar_update.[Id] = ar_sum.[Id]           

    where   ar_update.[Totaling Type] = 2  and   -- formulas
            len(trim(ar_update.[Totaling])) > 0  and      
            charindex('..', ar_update.[Totaling]) > 0   -- P ranges

发生这种情况是因为 where ar.[Id] = ar_update.[Id] 因为 ar_update.[Id] 不是一个值,它是一个多值类型,就像你在比较一个列表和一个整数,试试这个

update ar_update 
   set ar_update.[GLEntry_Amount] = ar_sum.[GLEntry_Amount_sum]
  from [dbo].[ASL_Result_VGO]  as ar_update  

  join (select  ar.[Id]                        as [Id]
               ,ar.[Company Id]                as [Company Id]
               ,ar.[Schedule Name]             as [Schedule Name]       
               ,ar.[Line No_]                  as [Line No_]            
               ,ar.[Row No_]                   as [Row No_]             
               ,ar.[Posting Date]              as [Posting Date]        
               ,ar.[Business Centre Code]      as [Business Centre Code]
               ,ar.[Site Locations Code]       as [Site Locations Code] 
               ,GLEntry_Amount_sum =     (select  sum(are.[GLEntry_Amount])     
                     from    [dbo].[ASL_Result_VGO]  as are
                     where   are.[Company Id]           = ar.[Company Id]  and          
                             are.[Schedule Name]        = ar.[Schedule Name]  and       
                             are.[Posting Date]         = ar.[Posting Date]  and          
                             are.[Business Centre Code] = ar.[Business Centre Code]  and   
                             are.[Site Locations Code]  = ar.[Site Locations Code]  and 
                             are.[Row No_] in ( select * from dbo.udf_range_expand_VGO(ar.[Totaling]) )  
                    )

        from    [dbo].[ASL_Result_VGO]  as ar
 

       )  ar_sum  on  ar_update.[Id] = ar_sum.[Id]           

    where   ar_update.[Totaling Type] = 2  and   -- formulas
            len(trim(ar_update.[Totaling])) > 0  and      
            charindex('..', ar_update.[Totaling]) > 0