我有2個表如下:Mysql的innerjoin條款不工作
talk
表:
topic_id | topic_name | user_id (user who create topic)
1 test1 1
2 test2 2
talk_reply
表:
talk_reply_id | message | topic_id | user_id (user who reply to specific topic)
1 hi1 1 3
2 hi2 1 4
user
表:
user_id | name
1 mark
2 pedro
3 gates
4 steve
我的查詢如下:
SELECT `tr`.`message`,
`tr`.`user_id`,
`tr`.`topic_id`,
`u`.`name`
FROM `talk_reply` AS `tr`
INNER JOIN `users` AS `u` ON tr.user_id = u.user_id WHERE (tr.topic_id=1)
但我只得到1分的結果,而不是2,我缺少什麼嗎?謝謝。
你想得到什麼? –
我想從talk_reply表中獲取回覆特定主題的用戶的名稱,在這種情況下topic_id 1 – d3bug3r
@zlippr - 您提供的數據返回兩行。實際上*使用的數據中有一個錯誤,您沒有向我們展示* actual *語句,或者MySQL的sql引擎包含嚴重錯誤。我懷疑這是後者:) –