我在我的表模型中有这个名为Table
$ test = $ this-> find('first',array( 'conditions'=> array('table.test_id为NULL'), '为了'=> array('table.created ASC'), ) );
它不起作用。尝试使用一些标准获取最新行
答案 0 :(得分:4)
首先,要获得最新的行,您需要按created
字段降序组织,而不是按升序排序。此外,您的语法存在一些问题,我已在下面进行了清理。
$this->find('first', array('conditions'=>array('Table.test_id'=>NULL), 'order'=>array('Table.created'=>'desc')));