Lithium - 使用find('list')和SQL的DISTINCT给我一个空数组

时间:2012-02-14 18:45:15

标签: sql list find distinct lithium

我正在尝试将list选项与find()和SQL DISTINCT一起使用。 我应该得到一个填充了值的数组,相反,我得到一个空数组。

这确实有意义,因为我将不同的字段作为一个字符串而不是元素数组传递,但我不知道如何在Lithium中使用DISTINCT。

非常感谢某些方向。 这可能是情人节,但锂今天没有给我太多爱:)。

型号:

class ZipCodes extends \app\extensions\data\Model {

    protected $_meta = array(
        'key'   => 'zip_code_id',
        'title' => 'state_name'
    );

    protected $_schema = array(
        'state_name' => array('type' => 'varchar'),
        'StateFIPS'  => array('type' => 'varchar')
        //there are more fields in my table but I haven't defined the
        //rest in my model
    );
}

我的控制器中的add方法

public function add()
{
    $zipcodes = Zipcodes::find('list', array(
            'fields'     => array('DISTINCT state_name'),
            'order'      => 'state_name ASC',
            'conditions' => array('state_name' => array('!=' => ''))
        )
    );
    return compact('zipcodes');
}

0 个答案:

没有答案