有3個表mysql的多連接查詢與ID列表
products_to_stores
product_id | store_id
___________________
50 | 1
50 | 2
66 | 1
50 | 1
111 | 3
111 | 1
51 | 1
69 | 3
69 | 2
products_to_categories
product_id | category_id
____________________
50 | 69
50 | 68
50 | 40
51 | 66
52 | 55
69 | 41
111 | 40
111 | 70
product_descriptions
product_id | manufacturer_id (parent category id)
____________________
68 | 345
69 | 233
70 | 788
50 | 788
111 | 788
51 | 210
52 | 788
如何獲得一個SQL查詢中內的類別列表的IDS產品68,40,41,55,66的IDS的列表...和製造商的IDS列表210788233 ....和STORE_ID = 1,以避免用PHP foreach循環並避免重複產品id?
當你把...分類列表後/製造,你的意思是所有的類ID或只有你列出 –
我的意思是上市 –