sql不允许在where子句比较中使用case变量[重复]

Posted

技术标签:

【中文标题】sql不允许在where子句比较中使用case变量[重复]【英文标题】:sql not allowing to use case variable in where clause comparison [duplicate] 【发布时间】:2019-08-15 12:15:42 【问题描述】:

我正在尝试在 sql_server 中运行查询

我想加入 2 col 并比较两者 & print_col 的数量,其中 1st table(sid) 的数量少于 2nd table(idt)

由于我需要第一个表的所有数据而不考虑没有连接,这就是为什么我使用 LEFT JOIN 并将空字段设置为 0

SELECT sid.id, sid.total_quantity, idt.id,
CASE 
    WHEN idt.total_quantity IS NULL THEN 0
   ELSE idt.total_quantity
END as total_quantity2
FROM abc_details as sid
LEFT JOIN (SELECT * FROM def_details WHERE location_name = 'XYZ') as idt
ON sid.item_no = idt.item_no 
WHERE sid.stock_invoice_id = 37
ORDER BY sid.item_code, sid.lot_number

这适用于案例条件的 col_name 'total_quantity2'

但是,当我尝试比较时

WHERE sid.stock_invoice_id = 37 AND sid.total_quantity < total_quantity2

但是,我遇到了错误

 Unknown column 'total_quantity2' in 'where clause'

为什么会这样以及如何解决这个问题

【问题讨论】:

您无权访问 WHERE 子句中的列别名。 (它们还不存在。) 提示:coalesce(idt.total_quantity, 0) 而不是 case 【参考方案1】:

您可以将查询简化为:

SELECT sid.id, sid.total_quantity, idt.id,
       COALESCE(idt.total_quantity, 0) as total_quantity2
FROM abc_details sid LEFT JOIN
     def_details idt
     ON sid.item_no = idt.item_no AND
        idt.location_name = 'XYZ'
WHERE sid.stock_invoice_id = 37
ORDER BY sid.item_code, sid.lot_number;

这会将CASE 表达式更改为COALESCE() 并删除子查询。

对于您的WHERE 子句,您不妨重复一下表达式:

WHERE sid.stock_invoice_id = 37 AND
      sid.total_quantity < COALESCE(idt.total_quantity, 0)

但是,鉴于数量通常为非负数并假设 NULL 值来自 LEFT JOIN,您可以将查询编写为:

SELECT sid.id, sid.total_quantity, idt.id,
       idt.total_quantity as total_quantity2
FROM abc_details sid JOIN
     def_details idt
     ON sid.item_no = idt.item_no AND
        idt.location_name = 'XYZ'
WHERE sid.stock_invoice_id = 37 AND
      sid.total_quantity < idt.total_quantity
ORDER BY sid.item_code, sid.lot_number;

也就是说,如果您希望在 WHERE 子句中出现这种不等式,则需要匹配行。

【讨论】:

你是个天才。不错的方法

以上是关于sql不允许在where子句比较中使用case变量[重复]的主要内容,如果未能解决你的问题,请参考以下文章

WHERE 子句中的 CASE

在 where 子句中使用 CASE

在 where 子句中使用 case 语句的 Oracle Missing 关键字

在 Where 子句中使用 case 构建动态查询

Oracle:在 Where 子句中使用 Case 语句

SQL 在 WHERE IN 子句中使用 CASE 语句