我一直在努力将以下SQL转换为CDBCriteria以与CActiveDataProvider结合使用:
“ SELECT PresetDeviceLink。,Device。从PresetDeviceLink内连接设备打开Device.id = PresetDeviceLink.deviceId WHERE Device.roomId = 1”

表结构如下:

mysql> describe PresetDeviceLink;
+----------+---------+------+-----+---------+----------------+
| Field    | Type    | Null | Key | Default | Extra          |
+----------+---------+------+-----+---------+----------------+
| id       | int(11) | NO   | PRI | NULL    | auto_increment |
| presetId | int(11) | NO   |     | NULL    |                |
| deviceId | int(11) | NO   |     | NULL    |                |
| state    | int(11) | NO   |     | 0       |                |
| value    | int(11) | NO   |     | 32      |                |
+----------+---------+------+-----+---------+----------------+

mysql> describe Device;
+-------------+--------------+------+-----+---------+----------------+
| Field       | Type         | Null | Key | Default | Extra          |
+-------------+--------------+------+-----+---------+----------------+
| id          | int(11)      | NO   | PRI | NULL    | auto_increment |
| ref         | int(11)      | NO   |     | NULL    |                |
| roomId      | int(11)      | NO   |     | NULL    |                |
| typeId      | int(11)      | NO   |     | NULL    |                |
| paired      | tinyint(1)   | NO   |     | 0       |                |
| name        | varchar(255) | YES  |     | NULL    |                |
| description | text         | YES  |     | NULL    |                |
| dimmerPos   | int(11)      | NO   |     | 0       |                |
+-------------+--------------+------+-----+---------+----------------+


我在控制器中的代码如下:

$criteria = new CDbCriteria;
$criteria->select = 'PresetDeviceLink.*, Device.*';
$criteria->join = 'INNER JOIN Device ON Device.id = PresetDeviceLink.deviceId';
$criteria->condition = 'Device.roomId = 1';

$presetDeviceLink=new CActiveDataProvider('PresetDeviceLink', array(
    'criteria' => $criteria,
));


运行时,出现以下错误:

CDbCommand failed to execute the SQL statement: SQLSTATE[42S22]: <b>Column not
found</b>: 1054 Unknown column 'PresetDeviceLink.deviceId' in 'on clause'. The SQL
statement executed was: SELECT COUNT(*) FROM `PresetDeviceLink` `t` INNER JOIN
Device ON Device.id = PresetDeviceLink.deviceId WHERE Device.roomId = 1


奇怪的是,如果我使用“设备”作为CActiveDataProvider源,并更改连接语句以连接到“ PresetDeviceLink”,则它会抱怨找不到Device.roomId列。

我只是不了解CActiveDataProvider如何工作?在我看来,我只能在传递给CActiveDataProvider的表的字段中使用条件(在联接或where子句中)。有什么建议吗?

PS-SQL查询在MySQL控制台中可以很好地工作。

提前致谢,

最佳答案

在“执行的SQL语句为:”行中可以看到,第一个表的别名为t。这是Yii的标准行为。

结果,您应该使用该别名而不是PresetDeviceLink来引用该表。或者,您可以尝试在$criteria->alias = 'PresetDeviceLink';中使用它之前设置CActiveDataProvider,尽管我没有亲自尝试过该选项,但它应该可以工作。

10-04 15:55