我的user表是用户注册信息表.我要获取注册用户总数,我开始是使用的是
$total = count(User::model()->findAll());
之后发现更好的方法.
$criteria = new CDbCriteria();
//查询数据库中所有的记录
$total = Admin::model()->count($criteria);
如果你想查询数量并且是带具体条件的如何查询呢?
$result = Yii::app()->db->createCommand()
->select('id')
->from("{{product_comment}} comment")
->where('product_id=' . $pid . ' and status=1')
->queryAll();
下面是AR count写法
$total= ProductComment::model()->count('product_id=' . $pid . ' and status=1');//总条数