0
我有3個表格posts
,tags
和posts_tags
。多對多原始查詢
posts:
- id
- title
tags:
- id
- text
posts_tags:
- id
- post_id
- tag_id
我試圖找回所有有標籤與1
我的查詢的ID的帖子:
SELECT * FROM posts LEFT OUTER JOIN posts_tags ON posts_tags.tag_id = 1;
這是返回所有我的職位,甚至是一個使用不同的標籤ID,而不僅僅是標籤ID爲1的帖子。
你確定你在posts_tags後的ID POST_ID列? – cwallenpoole
對不起,我看到你回答之前刪除了評論。我在結束時犯了一個錯誤,這個查詢正是我要找的謝謝 – Rodrigo