Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Bugzilla,我本质上想从“错误”数据库中的错误表中选择 *。但是,“assigned_to”列实际上包含整数值 (ID),而不是带有用户名的字符串。
这些 ID 与“profiles”表(“userid”列)中的主键匹配,而我希望查询返回的字符串实际上存储在该表的“realname”列中。
如何修改此查询以捕获“错误”中的所有列,但对assigned_to 列执行查找并返回用户名?
SELECT b.*, p.realname FROM bugs b JOIN profiles p ON b.assigned_to = p.userid