yii---左查询使用】的更多相关文章

应用场景分析:(个人观点,欢迎小祖宗们指正补充) 适合存在父子关系的单表,以及多表的查询   话不多说上代码 代码:mapper里的sql 表名字段什么的本来是单独集中配置的,现在还原到sql中了 <select id="searchListVo" resultMap="departmentResultMap"> select * from department d1 left join department d2 on d1.dep_parent_id…
ActiveRecord类文档:http://www.yiiframework.com/doc/guide/1.1/en/database.ar 对于一个Model Post 有如下的4中查询方法,返回对象或者对象数组. // find the first row satisfying the specified condition // find the first row satisfying the specified condition $post=Post::model()->find…
控制器 <?php namespace backend\controllers; use app\models\Comment; use app\models\Commentstatus; use yii\data\Pagination; class CommentController extends \yii\web\Controller { public function actionIndex() { // 创建一个 DB 查询来获得所有 status 为 2 的数据 $query = C…
基础查询 Customer::find()->one();    此方法返回一条数据: Customer::find()->all();    此方法返回所有数据: Customer::find()->count();    此方法返回记录的数量: Customer::find()->average();    此方法返回指定列的平均值: Customer::find()->min();    此方法返回指定列的最小值 : Customer::find()->max()…
原文链接:http://keshion.iteye.com/blog/1607994 一.多表关联的配置 在我们使用 AR 执行关联查询之前,我们需要让 AR 知道一个 AR 类是怎样关联到另一个的. 两个 AR 类之间的关系直接通过 AR 类所代表的数据表之间的关系相关联. 从数据库的角度来说,表 A 和 B 之间有三种关系:一对多(one-to-many,例如 tbl_user 和 tbl_post),一对一( one-to-one 例如 tbl_user 和 tbl_profile)和 多…
$cri = new CDBcriteria(); $cri->addCondition( ' hid = '.$hid.' ' ); $cri->select = 'id,property'; $costMoney = Cost::model()->find($cri); 这种方法是查找出指定的字段的值,但是由于是对象,所以其他字段值都被补成空! 无法达到要求 要下面的方法 $sql = " select ".$fields." from ysh_cost…
原文链接:http://keshion.iteye.com/blog/1607994 一.多表关联的配置 在我们使用 AR 执行关联查询之前,我们需要让 AR 知道一个 AR 类是怎样关联到另一个的. 两个 AR 类之间的关系直接通过 AR 类所代表的数据表之间的关系相关联. 从数据库的角度来说,表 A 和 B 之间有三种关系:一对多(one-to-many,例如 tbl_user 和 tbl_post),一对一( one-to-one 例如 tbl_user 和 tbl_profile)和 多…
$userModel = User::Model(); $userModel->count(); $userModel->count($condition); $userModel->count($condition, $params); $userModel->countByAttributes($attributes); $userModel->countByAttributes($attributes, $condition); $userModel->count…
通过外键自己关联自己…
原文地址:http://www.yiiframework.com/doc/guide/1.1/en/database.query-builder 不过原文是英文的,Yii的官网没有翻译这一章,自己就尝试着翻译了一下,有很多地方时会按自己的理解写,不一定完全按原文翻译... Yii的查询生成器提供了用面向对象的方式写SQL语句.它允许开发人员使用类的方法和属性来指定一个SQL语句的各个部分.然后,组装成一个有效的SQL语句,可以通过调用DAO数据访问对象的描述方法为进一步执行.以下显示了一个典型的…