码迷,mamicode.com
首页 > 其他好文 > 详细

phalcon count统计

时间:2016-09-16 11:34:05      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:

单表count:

//How many robots are there?
$number = Robots::count();
echo "There are ", $number, "\n";

//How many mechanical robots are there?
$number = Robots::count("type=‘mechanical‘");
echo "There are ", $number, " mechanical robots\n"

 

多表count:

$result = $this->modelsManager->createBuilder()
->columns("SysContractWarn.con_warn_id")
->from("SysCustomer")
->join("SysContract","SysCustomer.cus_id = SysContract.cus_id")
->join("SysContractWarn","SysContract.con_id = SysContractWarn.con_id")
->where($where." AND SysCustomer.serv_status = 0 AND SysContractWarn.rmk_del = 0",array("manId"=>$man->man_id))
->getQuery()
->execute()
->count();

phalcon count统计

标签:

原文地址:http://www.cnblogs.com/achengmu/p/5876086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!