我有这段代码:
static public function getLastNewMessage($profile_id)
{
$c = new Criteria();
$subSelect = "select max(rc_message_box_table.id), rc_message_box_table.profile_id_to, rc_message_box_table.profile_id_from NOT IN ( SELECT rc_blocklist_table.profile_id_block FROM rc_blocklist_table WHERE profile_id = $profile_id ) and rc_message_box_table.profile_id_to=$profile_id and opened_once = 0";
$c->add(self::PROFILE_ID_TO, $subSelect, Criteria::CUSTOM);
return self::doSelect($c);
//SELECT MAX(auto-increment field), * FROM `table`
}
以上不起作用我得到一个错误:
[wrapped: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' rc_message_box_table.profile_id_to, rc_message_box_table.profile_id_from NOT IN' at line 1]
如何使用条件对象获取MAX(自动增量字段)的最后一条记录,还是有另一种方式? 请帮忙? 感谢
答案 0 :(得分:0)
错误是因为
NOT IN
( SELECT rc_blocklist_table.profile_id_block
FROM rc_blocklist_table
WHERE profile_id = $profile_id )
and rc_message_box_table.profile_id_to=$profile_id
and opened_once = 0;
不是表的名称。从哪个实际表(或子查询)到select
?