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

发布于 2025-01-05 11:09:21 字数 1067 浏览 1 评论 0原文

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

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

一些方向将不胜感激。 今天可能是情人节,但 Lithium 今天并没有向我展示太多的爱:)

模型:

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');
}

I'm trying to use Lithiums list option with find() along with SQL's DISTINCT.
I should get an array populated with values, instead, I'm getting an empty array.

This does make sense since I'm passing in the distinct fields as one string instead of an array of elements but I don't know how else to use DISTINCT in Lithium.

Some direction would be greatly appreciated.
It may be valentines day but Lithium is not showing me too much love today :)

Model:

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
    );
}

The add method in my controller

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');
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文