我試圖編寫一個查詢,獲取所有新聞和每個新聞的所有評論。 我當前的查詢是:獲取所有新聞和所有評論
SELECT n.*,
c.* AS comments
FROM news n
JOIN comments c ON (c.news_id = n.id)
但是,當我取查詢作爲數組它給了我的意見的關鍵,我想有通過新聞和鍵在子陣列中的所有評論。
喜歡的東西:
Array
(
[0] => Array
(
[id] => 1 // news' id
... // rest of news' data
[comments] = Array
(
[id] => 1 // comment's id
... // rest of comments' data
)
),
... // all other news
)
謝謝!