如何在实践中解决nested responds to comments?我有一个列表:
我需要SQL查询中的这样的数组:
$result = [
[ // First comment
'author' => 'Michael',
'content' => 'It's very good book!',
'responds' => [
['author' => 'Martin', 'content' => 'I agree.'],
['author' => 'Susan', 'content' => 'Hello world!.']
]
],
[ // Another comment
'author' => 'Tomas',
'content' => 'Hi everyone!',
'responds' => [
['author' => 'Jane', 'content' => 'Hi.']
]
],
...
];
// Get all the comments of this book.
$comments = $db->query('SELECT * FROM comments WHERE book_id = ? AND response_to IS NULL', [$bookId]);
// Find all the responds to each comments.
foreach ($comments as &$comment) {
$comment['responds'] = $db->query('SELECT * FROM comments WHERE response_to = ?', [$comment['comment_id']]);
}
$db->query('SELECT t1.*,
(SELECT * FROM comments AS t2 WHERE t2.response_to = t1.comment_id) AS responds
FROM comments AS t1 WHERE t1.book_id = ?', [$bookId]);
答案 0 :(得分:0)
错误是因为您只能使用上述方法选择一列,最多一行。
您可以使用左自联接
select *
from comments t1
left join comments t2
on t1.comment_id = t2.response_to
where t1.book_id = ?