I am using PHP and MySQL If I have the following two tables
orders
----
|id|
|--|
|1 |
|2 |
|3 |
|4 |
----
items
----
|order_id|sku|
|------------|
| 1 | A |
| 1 | B |
| 1 | C |
| 2 | B |
| 2 | A |
| 3 | A |
| 4 | B |
| 4 | C |
--------------
I would like to retrieve the following info:
| original_SKU | bought_with | times_bought_together |
|--------------|-------------|-----------------------|
| A | B | 2 |
| A | C | 1 |
| B | A | 2 |
| B | C | 2 |
| C | A | 1 |
| C | B | 2 |
------------------------------------------------------
I cant think where to begin with this. Cheers