假设我有一个users
在 cakephp 应用程序中调用的数据库表,其中包含一堆用户,并且在该表中我有一个名为的字段date
,其中包含每个用户的注册日期。例如,假设我想进行查找查询以获取上个月注册的所有用户。就像是:
$last_month_users = $this->User->find('all', array(
'conditions' => array(
'User.date' => 'last month'
)
));
像这样的东西是行不通的。知道我会怎么做吗?
谢谢