我正在嘗試從2個表中的數據和多行合併成一個while循環從多個表分爲單列獲取數據,而
帖子
post_id content
------ -------
1 content1
2 content2
3 content3
4 content4
comments
id post_id content
------ ------ ------
1 1 Wharton university
1 2 Yale University
SQL代碼我寫
mysqli_query($connect, "SELECT * FROM `posts`
INNER JOIN comments ON posts.post_id = comments.post_id ORDER BY 1 DESC");
問題我只是得到帖子id 1和2.而有超過30個帖子
我想在單個while循環中獲取每篇文章的所有文章和評論。
我該怎麼辦?
jquery在這個問題中的作用是什麼? – guradio
是從兩個表中獲取所有列數據! ,我必須爲每一列命名嗎? –
'有超過30個帖子',以及多少條評論?對於你的情況,國際海事組織,你應該使用'左外部連接'而不是'內部連接' –