嗨,我正在使用 yiiCDbCriteria
来显示我的表格的值。我的 MySQL 查询中有一个子查询。$criteria
但我不知道如何在yii中编写子查询条件。任何人都可以帮助做到这一点
我的查询是这样的
select * from (select * from Message order by createdOn desc )as mess group by courseid
编辑:表结构
id int(11) NOT NULL AUTO_INCREMENT,
courseid int(11) NOT NULL,
senderid int(11) NOT NULL,
recipientid int(11) DEFAULT NULL,
message text NOT NULL,
createdOn timestamp NULL DEFAULT CURRENT_TIMESTAMP,
status tinyint(4) DEFAULT '0',
fileName text,
PRIMARY KEY (id) )
ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
提前致谢 ;)