dtbl1231 2016-04-09 14:32
浏览 53

codeigniter连接计数另一个表

     $query=$this->db->select('*')
                     ->from('activation')
                     ->join('products','products.id_pro = activation.id_pro')
                     ->join('user','user.id = products.user_p')
                     ->order_by('id_key','DESC')
                     ->get();
     return $query->result();  

I have these code where I join result from 3 tables abd that works good. What I need more is counted rows from 4.table. That table is called license, and I need to count how many rows are with id_key (primary key for table activation). How to add that in my code?

  • 写回答

1条回答 默认 最新

  • dran0703 2016-04-09 14:58
    关注

    Try selecting license column as count

         $query=$this->db->select('*, COUNT(license.id_key ) as license_count')
                     ->from('activation')
                     ->join('products','products.id_pro = activation.id_pro')
                     ->join('user','user.id = products.user_p')
                     ->join('license','license.id_key = table.column?')
                     ->order_by('id_key','DESC')
                     ->get();
    

    access the count within the object like: $query->result()->license_count;

    评论

报告相同问题?

悬赏问题

  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计