标签:nbsp mysq order model group join info 解决 mode
作为小白的我,这个问题弄了半天才解决,特此记录下。
两张表:文章表和评论表
文章表(article):id
评论表(comment):id,c_aid
要求:查询出所有文章及评论数量然后降序显示(没有评论的文章的评论数量则返回为0)
SQL:select A.id, ifnull(AC.comment_count, 0) as cont from b_articleinfo A LEFT JOIN (select c_aid, count(1) as comment_count from b_article_comment group by c_aid) AC ON A.id = AC.c_aid order by A.id desc
提示:因为查询出来的评论数量没有相应映射,所以需要在model和mybatis的xml中添加属性,才能获取到数据
标签:nbsp mysq order model group join info 解决 mode
原文地址:http://www.cnblogs.com/hushunwei/p/6785440.html