Rumah > Soal Jawab > teks badan
P粉5210131232023-07-25 13:32:08
Kaedah ini tidak akan berfungsi. 19 dan 20 memenuhi main.replay_comment_id IS NULL, tetapi dalam subquery untuk 21, posts_comments.replay_comment_id = 19, ini tidak memberikan sebarang hasil. Oleh itu, subkomen 21 dan 22 tidak dipilih.
Sila semak pertanyaan berikut untuk melihat sama ada ia memberi anda hasil.
SELECT p1.`comment_id`, p1.`comment`, p1.`timestamp`, p1.`replay_comment_id`, ( CASE WHEN p1.`replay_comment_id` IS NULL THEN 1 WHEN p1.`replay_comment_id` IN (SELECT DISTINCT comment_id FROM posts_comments) THEN 1 ELSE 0 END ) relationFlg, SUM(1- ISNULL(p2.`comment_id`)) hasChild FROM `posts_comments` p1 LEFT JOIN `posts_comments` p2 ON p1.`comment_id` = p2.`replay_comment_id` GROUP BY 1 HAVING relationFlg = 1 ORDER BY 1 ;