Zend Framework - 选择查询问题

发布于 2024-10-26 17:49:23 字数 410 浏览 0 评论 0原文

我有一个查询,我连接了几个表。 2 个表包含相同的字段名,因此我想选择 1 个表作为另一个名称。我知道该怎么做,但似乎当我查询一个字段作为另一个名称时,它只选择该字段。

我的问题是:如何选择表中的所有字段,以及特定字段作为另一个名称?

这就是我现在的代码:

    $select->from('one');
    $select->join('two', 'one.item_id = two.id', array('item_name' => 'name'));
    $select->join('three', 'one.item_id = three.item_id');

所以我想从两个中选择全部,并将字段名称命名为 item_name。

提前致谢!

I have a query where i join a couple of tables. 2 tables contain the same fieldname, so i want to select 1 table AS another name. I know how to do that, but it seems that when i query a field AS another name, it selects only that field.

My question is: how can i select all fields in the table, and a particular field AS another name?

This is how i have my code at this moment:

    $select->from('one');
    $select->join('two', 'one.item_id = two.id', array('item_name' => 'name'));
    $select->join('three', 'one.item_id = three.item_id');

So i want to select all from two, and name the field name AS item_name.

Thanks in advance!

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

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

发布评论

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

评论(1

丘比特射中我 2024-11-02 17:49:23

我还没有尝试过,但我认为你能够做到这一点:

$select->join('two', 'one.item_id = two.id', array('item_name' => 'name', '*'));

I haven't tried this but I think you're able to do this:

$select->join('two', 'one.item_id = two.id', array('item_name' => 'name', '*'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文