嵌套计算列"Invalid column name"错误(T-SQL 列别名)



我已经创建了3个计算的列作为别名,然后使用别名列来计算总成本。这是查询:

SELECT TOP 1000 [Id]
      ,[QuantityOfProduct]
      ,[Redundant_ProductName]
      ,[Order_Id]
      ,(CASE 
            WHEN [PriceForUnitOverride] is NULL 
                THEN [Redundant_PriceForUnit]
            ELSE
                [PriceForUnitOverride]
        END
        ) AS [FinalPriceForUnit]
      ,(CASE 
            WHEN [QuantityUnit_Override] is NULL 
                THEN [Redundant_QuantityUnit]
            ELSE
                [QuantityUnit_Override]
        END
        ) AS [FinalQuantityUnit]
      ,(CASE 
            WHEN [QuantityAtomic_Override] is NULL 
                THEN [Redundant_QuantityAtomic]
            ELSE
                [QuantityAtomic_Override]
        END
        ) AS [Final_QuantityAtomic]
         --***THIS IS WHERE THE QUERY CREATES AN ERROR***--
        ,([QuantityOfProduct]*[FinalPriceForUnit]*
  ([Final_QuantityAtomic]/[FinalQuantityUnit])) AS [Final_TotalPrice]

  FROM [dbo].[ItemInOrder]
  WHERE [IsSoftDeleted] = 0
  ORDER BY [Order_Id] 

控制台返回此错误消息:

Msg 207, Level 16, State 1, Line 55
Invalid column name 'FinalPriceForUnit'.
Msg 207, Level 16, State 1, Line 55
Invalid column name 'Final_QuantityAtomic'.
Msg 207, Level 16, State 1, Line 55
Invalid column name 'FinalQuantityUnit'.

如果我删除了" AS [final_totalprice]"别名计算的列,则不会发生错误,但是我需要总价。我该如何解决这个问题?似乎在达到final_totalprice时尚未创建其他别名。

您不能使用同一选择中的表别名。普通解决方案是CTE或子征服。但是,SQL Server还提供APPLY。(Oracle还支持APPLY和其他数据库,例如Postgres支持使用LATERAL关键字的横向连接。)

我喜欢这个解决方案,因为您可以创建任意嵌套的表达式,而不必担心缩进:

SELECT TOP 1000 io.Id, io.QuantityOfProduct, io.Redundant_ProductName,
       io.Order_Id,
       x.FinalPriceForUnit, x.FinalQuantityUnit, x.Final_QuantityAtomic,
       (x.QuantityOfProduct * x.FinalPriceForUnit * x.Final_QuantityAtomic / x.FinalQuantityUnit
       ) as Final_TotalPrice
FROM dbo.ItemInOrder io OUTER APPLY
     (SELECT COALESCE(PriceForUnitOverride, Redundant_PriceForUnit) as FinalPriceForUnit,
             COALESCE(QuantityUnit_Override, Redundant_QuantityUnit) as FinalQuantityUnit
             COALESCE(QuantityAtomic_Override, Redundant_QuantityAtomic) as Final_QuantityAtomic
     ) x
WHERE io.IsSoftDeleted = 0
ORDER BY io.Order_Id ;

注意:

  • 我没有发现[]帮助我读或写查询。
  • COALESCE()比您的CASE语句要简单得多。
  • 使用COALESCE(),您可能会考虑将COALESCE()表达式放在最终计算中。

您不能在同一选择中使用别名。您可以做的就是在子查询中找到值,然后在表达式中在外部使用它(或可以在表达式中重复整个案例语句)。另外,使用COALESCE代替CASE

select t.*,
    ([QuantityOfProduct] * [FinalPriceForUnit] * ([Final_QuantityAtomic] / [FinalQuantityUnit])) as [Final_TotalPrice]
from (
    select top 1000 [Id],
        [QuantityOfProduct],
        [Redundant_ProductName],
        [Order_Id],
        coalesce([PriceForUnitOverride], [Redundant_PriceForUnit]) as [FinalPriceForUnit],
        coalesce([QuantityUnit_Override], [Redundant_QuantityUnit]) as [FinalQuantityUnit],
        coalesce([QuantityAtomic_Override], [Redundant_QuantityAtomic]) as [Final_QuantityAtomic]
    from [dbo].[ItemInOrder]
    where [IsSoftDeleted] = 0
    order by [Order_Id]
    ) t;

最新更新