doufei2007 2012-01-25 18:59
浏览 116
已采纳

我可以在选择*时排除数据库字段

I'm creating a mysql statement that uses a left join but need to exclude a duplicate field from the second table. Is there an easy way to do this?

My query looks like this:

SELECT * FROM profiles LEFT JOIN login_users ON profiles.user_id=login_users.user_id WHERE profiles .user_id={$user_id}

Both the profiles and login_users table have a 'gender' field but I only want the 'gender' field from the profile table.

  • 写回答

1条回答 默认 最新

  • drblhw5731 2012-01-25 19:02
    关注

    You might just want to define what you actually need, instead of using a *. THat's kinda good practice and all.

    But if you REALLY need that *, you can just do something like this:

    SELECT *,profiles.gender as TheRealGenderINeed 
    FROM profiles 
       LEFT JOIN login_users ON profiles .user_id=login_users.user_id 
    WHERE profiles .user_id={$user_id}
    

    Now you've got an extra genderfield available as TheRealGenderINeed. If you don't want extra fields you should really just specify what fields you want from each table. That way you'll only get one gender if you only specify one ;)

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

报告相同问题?

悬赏问题

  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画