0

如果在 select 语句中使用 select 语句,它的计数为 null,如何将字段 most_popular 设置为 0

我试过 IFNULL(SELECT COUNT(*) ...), 0) as most_popular 但它不起作用,我试过 COALESCE(SELECT COUNT(*) ...., 0) as most_popular

    $stmt = $db->prepare("SELECT *,         
    i.medium_image, i.width, i.height, 
    (SELECT COUNT(*) FROM order_details od WHERE od.product_id = p.product_id) as most_popular

    FROM products p 
        INNER JOIN product_images i on i.product_id = p.product_id      
    WHERE p.department_id=:department_id AND p.is_active=1
    $orderby        
    LIMIT :limit OFFSET :offset");
4

1 回答 1

3

尝试这个,

SELECT  *, 
        i.medium_image, 
        i.width, 
        i.height, 
        COALESCE(s.totalCount, 0) most_popular 
FROM    products p 
        INNER JOIN product_images i 
            ON i.product_id = p.product_id 
        LEFT JOIN
        (
            SELECT  product_id, Count(*) totalCount
            FROM    order_details
            GROUP   BY product_id 
        ) s ON s.product_id = p.product_id
WHERE  p.department_id = :department_id 
       AND p.is_active = 1 
$orderby 
LIMIT :limit OFFSET :offset

或者这个怎​​么样,(您当前的查询

COALESCE((SELECT COUNT(*) 
          FROM order_details od 
          WHERE od.product_id = p.product_id), 0) as most_popular
于 2013-04-30T03:25:21.357 回答