Sub-queries ActiveRecord Yii(子查询 ActiveRecord Yii)
问题描述
Yii 中的 ActiveRecord 是否可以进行子查询?
Is it possible to make sub-queries in ActiveRecord in Yii?
我有一个这样的查询:
select * from table1where table1.field1 in (select table2.field2 from table2)
我目前正在使用空闲代码:
i'm currently using the fallowing code:
object1::model()->findAll(array('condition'=>'t.field1 in (select table2.field2 from table2)'))
我想知道是否有一种方法可以在不使用 SQL 和不使用连接的情况下构造子查询.
i would like to know if there is a manner to construct the sub-query without using SQL, and without using joins.
有什么解决办法吗?
提前致谢.
推荐答案
首先通过 db 字段查找 doublets:
First find doublets by db fields:
$model=new MyModel('search');
$model->unsetAttributes();
$criteria=new CDbCriteria();
$criteria->select='col1,col2,col3';
$criteria->group = 'col1,col2,col3';
$criteria->having = 'COUNT(col1) > 1 AND COUNT(col2) > 1 AND COUNT(col3) > 1';
获取子查询:
$subQuery=$model->getCommandBuilder()->createFindCommand($model->getTableSchema(),$criteria)->getText();
添加子查询条件:
$mainCriteria=new CDbCriteria();
$mainCriteria->condition=' (col1,col2,col3) in ('.$subQuery.') ';
$mainCriteria->order = 'col1,col2,col3';
使用方法:
$result = MyModel::model()->findAll($mainCriteria);
或者:
$dataProvider = new CActiveDataProvider('MyModel', array(
'criteria'=>$mainCriteria,
));
来源:http://www.yiiframework.com/wiki/364/using-sub-query-for-doubletts/
这篇关于子查询 ActiveRecord Yii的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:子查询 ActiveRecord Yii
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01