WHERE子句MYSQL中的ISNULL(值,0)

时间:2017-03-21 16:07:12

标签: mysql where isnull

我有这个要求:

SELECT sc.no, scl.quantite, scl.description, scl.poids, scl.prix, sl_ref.refsl, sl_ref.codetva, sl_ref.tauxtva, sl_ref.compte 
FROM shop_commande 
AS sc, shop_commande_ligne AS scl, selectline_ref AS sl_ref 
WHERE sc.id = scl.shop_commande_id 
AND sl_ref.refshop = ISNULL(scl.shop_article_id, 0) 
AND sc.id NOT IN (SELECT id_command FROM selectline_flag)

有时,在 sl_shop_article_id 中,有一个NULL值。我想要的是将它替换为0,所以条款:

sl_ref.refshop = scl.shop_article_id
即使 scl.shop_article_id 为NULL,

也能正常工作。为此,我尝试使用ISNULL函数,但它使请求错误,我得到错误:

1582 - 调用本机函数'ISNULL'时参数计数不正确

我该如何使用它?

2 个答案:

答案 0 :(得分:3)

我相信您正在尝试使用IFNULL()功能。如果您将ISNULL替换为应修复查询的IFNULL

我建议您更进一步使用COALESCE()而不是IFNULL(),因为COALESCE()是SQL标准的一部分(并且IFNULL()不是)。

SELECT sc.no, scl.quantite, scl.description, scl.poids, 
scl.prix, sl_ref.refsl, sl_ref.codetva, sl_ref.tauxtva, sl_ref.compte 
FROM shop_commande 
AS sc, shop_commande_ligne AS scl, selectline_ref AS sl_ref 
WHERE sc.id = scl.shop_commande_id 
AND sl_ref.refshop = COALESCE(scl.shop_article_id, 0) 
AND sc.id NOT IN (SELECT id_command FROM selectline_flag)

答案 1 :(得分:2)

SELECT 
    sc.no
    , scl.quantite
    , scl.description
    , scl.poids
    , scl.prix
    , sl_ref.refsl
    , sl_ref.codetva
    , sl_ref.tauxtva
    , sl_ref.compte 
FROM shop_commande 
AS sc, shop_commande_ligne AS scl, selectline_ref AS sl_ref 
WHERE sc.id = scl.shop_commande_id 
AND sl_ref.refshop = IFNULL(scl.shop_article_id, 0) 
AND sc.id NOT IN (SELECT id_command FROM selectline_flag)