-1
五個表我有五個表:選擇使用PHP的MySQL
- table1的
- 表2
- 表3
- 表4
- 表5
在這些表中的字段是常見的,那就是name
。
SELECT *
FROM table1, table2, table3, table4, table5
WHERE table1.name = table2.name
and table2.name = table3.name
and table3.name = table4.name
and table4.name = table5.name
這樣的查詢應該工作嗎?
我們如何知道您的查詢是否有效?嘗試一下,如果遇到錯誤,告訴我們錯誤,然後我們可以提供幫助。我更喜歡'join ... on'語法。 – chris85
它與PHP無關。這樣的查詢應該可以正常工作,但你自己試試看,你會看到。我只是建議你使用JOIN來代替。 –
順便說一句歡迎來到StackOverflow。請首先查看StackOverflow的[提問問題幫助](http://stackoverflow.com/help/asking)。關注[我可以在這裏詢問哪些主題](http://stackoverflow.com/help/on-topic),[我應該避免詢問什麼類型的問題?](http://stackoverflow.com/help/dont (如何創建一個最小,完整和可驗證的示例)(http://stackoverflow.com/help/how-to-ask),http:// stackoverflow。 com/help/mcve)和[堆棧溢出問題清單](http://meta.stackoverflow.com/questions/260648/stack-overflow-question-checklist) –