-1
我兩個表獲取不存在於表
product_categories
------------------
id PK AUTO
category
store_product_categories
------------------------
id PK AUTO
store_id FK
category FK (product_categories id)
現在我想不在store_product_categories
這是我設計的查詢中的行,但沒有給我結果行
SELECT * FROM store_product_categories spc
LEFT JOIN product_categories pc
on spc.category=pc.id
WHERE spc.store_id=23 AND pc.id IS NULL
該查詢看起來是正確的,你確定你有數據應該有任何結果嗎? –
在您的問題 –
中爲兩個表添加示例值,您現在已經得到了一個答案。如果這樣不能解決問題,那麼我的第一條評論就適用 –