如何使用 Criteria 对象选择 max(id)?

发布于 2024-12-04 19:48:08 字数 999 浏览 0 评论 0原文

我有这个代码:

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(自动增量字段)的最后一条记录,或者还有其他方法吗? 请帮忙? 谢谢

i have this code:

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` 
}

the above is not working cos i get an error:

[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]

how can i get the very last record with MAX(auto-increment field) using the criteria object or is there another way?
please help?
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作死小能手 2024-12-11 19:48:08

错误是因为

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;

不是表名。您要从哪个实际表(或子查询)中选择

The error is because

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;

is not the name of a table. From which actual table (or subquery) are you trying to select?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文