简体   繁体   English

左外联接故障

[英]Trouble with LEFT OUTER JOIN

I'm trying to get a list of products order by the amount sold and by date. 我正在尝试按销售数量和日期获取产品订单列表。 I also want to display the products that haven't been sold in the list so I tried doing a subquery first but MYSQL is giving me this message: 我还想显示列表中未售出的产品,因此我尝试首先执行子查询,但MYSQL给出了以下消息:

Operand should contain 1 column(s) 操作数应包含1列

SELECT product.product_id, 
       product.product_brand_id, 
       product.product_model_id, 
       product.product_subcategory_id, 
       product.product_retail_price, 
       product.product_wholesale_price
FROM product
WHERE product.product_subcategory_id = $subcategory_id 
AND (SELECT SUM(product_sold.product_quantity) AS product_quantity_sold, 
            SUM(product_sold.product_total_price) AS total_price_sold 
     FROM product
     INNER JOIN product_sold 
        ON product.product_id = product_sold.product_id
     INNER JOIN sales 
        ON sales.sales_id = product_sold.product_sales_id 
     WHERE sales.sales_approved = '1' 
       AND sales.sales_approved_time > '$start_timestamp' 
       AND sales.sales_approved_time < '$end_timestamp')

The subquery did not work, So i tried using LEFT OUTER JOIN as suggested by another member with this query: 子查询不起作用,因此我尝试使用LEFT OUTER JOIN如该查询的另一个成员所建议:

SELECT product.product_id, 
       product.product_brand_id, 
       product.product_model_id, 
       product.product_subcategory_id, 
       product.product_retail_price, 
       product.product_wholesale_price, 
       SUM(product_sold.product_quantity) AS product_quantity_sold, 
       SUM(product_sold.product_total_price) AS total_price_sold 
FROM product
LEFT OUTER JOIN product_sold ON product.product_id = product_sold.product_id 
                            AND product.product_subcategory_id = $subcategory_id
LEFT OUTER JOIN sales ON sales.sales_id = product_sold.product_sales_id 
WHERE sales.sales_approved = '1' 
  AND sales.sales_approved_time > '$start_timestamp' 
  AND sales.sales_approved_time < '$end_timestamp'
GROUP BY product.product_id 
ORDER BY SUM(product_sold.product_quantity) DESC

But this query with LEFT OUTER JOIN is giving me the list of product sold only, what I want is to also show the products that haven't been sold in the list. 但是这个关于LEFT OUTER JOIN查询只给出了我出售的产品列表,我想要的是还显示该列表中没有出售的产品。

Here is the schema used sqlfiddle.com/#!2/967ee 这是使用的架构sqlfiddle.com/#!2/967ee

This query will work, to SELECT more columns from the products table add them to both the SELECT and GROUP BY clauses: 此查询将起作用,要从products表中SELECT更多列,请将它们添加到SELECTGROUP BY子句中:

SELECT p.product_id
    ,SUM(IFNULL(ps.product_quantity,0)) AS product_quantity_sold
    ,SUM(IFNULL(ps.product_total_price,0)) AS total_price_sold 
FROM product p
LEFT JOIN product_sold ps ON p.product_id = ps.product_id
LEFT JOIN sales s ON ps.product_sales_id = s.sales_id
WHERE p.product_subcategory_id = $subcategory_id
  AND ( s.sales_id IS NULL
       OR ( s.sales_approved = '1' 
          AND s.sales_approved_time > '$start_timestamp'  
          AND s.sales_approved_time < '$end_timestamp'
          )
       )
GROUP BY p.product_id
ORDER BY SUM(IFNULL(ps.product_quantity,0)) DESC

Explanation 说明

This query would have been much simpler if you could have used product_sold_approved and product_sold_approved_time in the WHERE clause instead of values from the sales table. 如果您可以在WHERE子句中使用product_sold_approvedproduct_sold_approved_time而不是sales表中的值,则此查询将更加简单。

You LEFT JOIN product_sold , a LEFT JOIN means you keep all records from the products table, and those that have been sold will get joined to each of the product_sold records. LEFT JOIN product_sold ,一个LEFT JOIN意味着您保留了products表中的所有记录,并且已售出的记录将加入到每个product_sold记录中。 Then you do the same for the sales table. 然后,对sales表执行相同的操作。

So at this stage, you have lots of rows that are product + product_sold + sales but you also have all the unsold products product + NULL + NULL . 因此,在此阶段,您有很多行是product + product_sold + sales但您还有所有未售出的产品product + NULL + NULL You need to filter out all the joined records where the matching sale fields do not meet your criteria, but you need to leave all the records that failed to join alone. 您需要过滤出匹配的销售字段不符合您的条件的所有联接记录,但是您需要将所有未能联接的记录留空。

To achieve this you have a WHERE clause that deals with each set of records separately. 为此,您有一个WHERE子句,该子句分别处理每组记录。 WHERE (condition A) OR (condition B) . WHERE (condition A) OR (condition B)

Condition A deals with our unsold products, WHERE s.sales_id IS NULL - all records that couldn't join to a sale are included in the result set and don't have to match the other criteria. 条件A处理我们的未售出产品WHERE s.sales_id IS NULL结果集包含所有无法加入销售的记录,而不必与其他条件匹配。

OR (sales_approved = 1 AND ... AND ...) records where s.sales_id isn't NULL will have to pass this half of the where clause, hence we filter out unwanted sales. OR (sales_approved = 1 AND ... AND ...)记录s.sales_id不为NULL的记录将必须通过where子句的这一部分,因此我们可以过滤掉不必要的销售。

At the end we're left with a result set that contains all records that didn't have any sales + all product/product_sales/sales record that met your criteria. 最后,我们得到一个结果集,其中包含没有任何销售的所有记录+满足您条件的所有product / product_sales / sales记录。 Then we can just GROUP BY product_id AND SUM what's left. 然后,我们可以GROUP BY product_id和求和。

I have IFNULL s in my SQL, these are because if you're summing lots of values and some of them might be NULL , if a single value is NULL then the result of the SUM is NULL . 我的SQL中有IFNULL ,这是因为如果要对许多值求和,而其中一些可能是NULL ,则如果单个值是NULLSUM的结果是NULL The IFNULL(column,0) protects against this by converting any NULL values to a 0 . IFNULL(column,0)通过将任何NULL值转换为0来防止这种情况。 1 + NULL = NULL , 1 + 0 = 1 . 1 + NULL = NULL1 + 0 = 1 HOWEVER , on reflection I thats probably not needed for the query - remove them and you should notice the change. 但是 ,在反思中,我可能不需要查询-删除它们,您应该会注意到更改。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM