這似乎是這將是簡單的,但由於某種原因,我不能讓這個做我想做什麼?在連接表搜索多個標準
我有一個食譜網站,我想成爲能夠根據是否包含多種成分來搜索食譜。我有兩張桌子,裏面有所有食譜信息,第二張桌子上還有食材。這是我迄今爲止的,但它不檢索任何記錄。任何幫助,將不勝感激。謝謝!
SELECT recipe.ID, recipe.Title, recipe.Photo FROM ingredient
LEFT JOIN recipe ON ingredient.Recipe_ID = recipe.ID
WHERE (ingredient.Description = 'egg' AND ingredient.Description = 'sugar' AND ingredient.Description = 'salt')
GROUP BY recipe.ID
谷歌「關係部門」。 – onedaywhen 2011-01-06 09:21:07