doutu6658 2016-10-14 03:14
浏览 67
已采纳

在codeigniter中进行多个查询,结果基于第一个查询

I want to display all rows of table article, and for each of article row i want get the SUM of votes from another table (likes), and this with one query.

Here what i have:

$query = "SELECT article.title,article.tags,article.description,article.slug,users.username,article.photo,article.id,article.date,SUM(likes.votes) as upvotes
          FROM article";
$query .= " LEFT JOIN users ON article.user_id = users.user_id ";
$query .= " LEFT JOIN likes ON likes.article_id = article.id ";

But my problem with this query, i get only one row ! because in table likes there only one row ...

I want to display results based on article table (i have about 50 rows in it)... and if there nothing related to votes for a specific article, we show (0 votes).

Thank you.

  • 写回答

2条回答 默认 最新

  • doudao3170 2016-10-14 05:21
    关注

    Add group by to the code :

    $query = "SELECT article.title, article.tags, article.description, article.slug, users.username, article.photo, article.id, article.date, SUM(likes.votes) as upvotes FROM article";
    $query .= " LEFT JOIN users ON article.user_id = users.user_id ";
    $query .= " LEFT JOIN likes ON likes.article_id = article.id ";
    $query .= " GROUP BY article.id";
    

    Or use codeigniter method:

    $this->db->select("article.title, article.tags, article.description, article.slug, users.username, article.photo, article.id, article.date");
    $this->db->select("SUM(likes.votes) as upvotes", false);
    $this->db->from("article");
    $this->db->join("users","article.user_id = users.user_id");
    $this->db->join("likes","likes.article_id = article.id");
    $this->db->group_by("article.id");
    $query = $this->db->get();
    return $query->result_array();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部