Zend Framework - 选择查询问题
我有一个查询,我连接了几个表。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有尝试过,但我认为你能够做到这一点:
I haven't tried this but I think you're able to do this: