finding products that customers bought together

前端 未结 2 746
清歌不尽
清歌不尽 2021-01-01 04:52

I am using PHP and MySQL If I have the following two tables

orders
----
|id|
|--|
|1 |
|2 |
|3 |
|4 |
----

items
----
|order_id|sku|
|------------|
|   1            


        
2条回答
  •  无人及你
    2021-01-01 05:31

    Try the following:

    SELECT c.original_SKU, c.bought_with, count(*) as times_bought_together
    FROM (
      SELECT a.sku as original_SKU, b.sku as bought_with
      FROM items a
      INNER join items b
      ON a.order_id = b.order_id AND a.sku != b.sku) c
    GROUP BY c.original_SKU, c.bought_with
    

提交回复
热议问题