search

Home  >  Q&A  >  body text

java - mysql 两表 count 没有数据则返回0?

问题列表:

用户回答问题情况列表:

现在的 问题是,我在select的时候 想直接显示:

username---------回答正确个数
st1------------------------- 0
st387944558-------------1

怎么才能达到以上效果呢?试了好多次都不行

PHPzPHPz2910 days ago281

reply all(4)I'll reply

  • 高洛峰

    高洛峰2017-04-18 10:26:59

    You can post your SQL statement and see what errors there are

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-18 10:26:59

    select username,count(*) 回答正确个数 from 回答问题情况列表 a,问题列表 b where a.question=b.id and a.answer=b.answer group by a.username;

    reply
    0
  • 阿神

    阿神2017-04-18 10:26:59

    SELECT
        username,
        count(t.answer)
    FROM
        user_answer a
    LEFT JOIN question t ON (
        a.question = t.question
        AND a.answer = t.answer
    )
    GROUP BY
        a.username

    reply
    0
  • PHP中文网

    PHP中文网2017-04-18 10:26:59

    q table:

    l table:

    Result:

    Solution:

    SELECT
        l.username,
        IFNULL(c.count, 0) count
    FROM
        l
    LEFT JOIN (
        SELECT
            username,
            count(*) count
        FROM
            l,
            q
        WHERE
            l.question = q.id
        AND l.answer = q.answer
    ) c ON l.username = c.username
    GROUP BY
        l.username

    reply
    0
  • Cancelreply