如何在JOIN查询结果中识别不同表中同名的字段?
我正在 MYSQL 中使用 LEFT JOIN 运行查询来获取用户及其用户组。两个表都有名为 id 的列。我的结果以数组(PHP)形式返回,这样我就有一个包含所有字段数据的数组,但也只有一个数组[“id”]。
这是我到目前为止的查询:
从用户 usr 中选择 usr.id、usg.id 左连接 (user_groups usg) ON (usg.id=usr.group_id)
现在,简单的解决方案是将字段重命名为唯一的名称,如 usr_id 和 usg_id,但我不想这样做。我更愿意将我的值作为 array["usr.id"] 自动返回到数组。
(我使用的是 CodeIgniter 框架,它会自动完成其余的工作,但如果只有 MySQL 可以返回表别名,我可以在那里重写一些东西)
I'm running a query in MYSQL using LEFT JOIN to get users and their user groups. Both tables have columns named id. My result is being returned in an array (PHP) so that I have one array with all field data, but also only one array["id"].
Here's my query so far:
SELECT usr.id, usg.id FROM users usr
LEFT JOIN (user_groups usg) ON
(usg.id=usr.group_id)
Now the easy solution would be to rename the fields to unique names like usr_id and usg_id but I prefer not to. I would much rather have my values returned to the array as array["usr.id"] automatically.
(I'm using the CodeIgniter framework which automatically does the rest, but I could rewrite some stuff there if only MySQL could return the table alias with it)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用“as”关键字
use the 'as' keyword
只需告诉 mysql 你想使用“as 'newname'”进行动态重命名
或使用学说本身执行 DQR 风格:
这应该返回一个数组,你可以在其中访问两个 id,如下所示:
并且其中之一都取决于关于您在用户和 user_groups 之间建立的关联
just tell mysql that you want to do an on the fly rename using "as 'newname'"
or using doctrine itself do it DQR style:
this should return an array where you can access both id's like that:
and eiter one of these both depending on the association you made between users and user_groups