sql >> Database >  >> RDS >> Mysql

operand moet 1 kolommen bevatten

U mag COUNT(p.post_id) AS total_posts niet opnemen in SELECT lijst in uw subquery. Gewoon

SELECT topic_id   
FROM phpbb_topics AS t
WHERE t.topic_id IN (
    SELECT p.topic_id --, COUNT(p.post_id) AS total_posts 
    FROM phpbb_posts AS p
    WHERE p.poster_id = 61640
    GROUP BY p.topic_id
    HAVING t.topic_replies_real = COUNT(p.post_id) - 1
);



  1. Hoe alle landinstellingen in MariaDB te tonen

  2. Hoe weet je wat een goede index is?

  3. Top 10 best practices in MySQL

  4. Hoe praat Access met ODBC-gegevensbronnen? Deel 6