doudianhuo1129 2012-07-25 16:26
浏览 172
已采纳

MySQL连接两个表并从两个表返回数据

I have a pretty simple MySQL query, that joins two tables:

SELECT teams.id, teams.name, players.id, players.name, players.teamId
FROM teams
LEFT JOIN players
ON teams.id = players.zoneId
WHERE teamId = 3

When I then fetch the rows, I can use the data like this:

echo($row["name"] . ", " . $row["id"]);

The data contained in the array, is the data from the players table. How can I also access the data from the "teams" table ?

Thanks.

  • 写回答

1条回答 默认 最新

  • dongtaogu8510 2012-07-25 16:27
    关注

    Use aliases for column names to differentiate between columns from team table and players table that have same names.

    SELECT teams.id as team_id, teams.name as team_name, players.id, players.name, players.teamId
    FROM teams
    LEFT JOIN players
    ON teams.id = players.zoneId
    WHERE teamId = 3
    

    Then you can use the below to get team name and team id:

    $row["team_name"]
    $row["team_id"]
    

    If it were me, I'd also use aliases for the player fields (e.g. player_id, etc.) just to make the code as clear as possible. Clear code == better maintainability.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?