gpt4 book ai didi

MySQL 查询 phpmyadmin

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:20 25 4
gpt4 key购买 nike

我正在尝试创建一个 SQL 查询来搜索用户 ID 并使用用户名填充查询。

这些是我的表格:

  • 表名称:'users' 和 'schedule'

enter image description here

这就是我想要的样子,“schedule”表现在显示用户名而不是用户 ID

enter image description here

最佳答案

这是您要查找的查询:

SELECT s.REFID, s.jobnum, s.customer, u1.username AS engineer, u2.username AS sales
FROM schedule s, users u1, users u2
WHERE s.engineer=u1.id
AND s.sales=u2.id

您需要分别引用 users 表两次,因为您要在一个子查询中检查工程师的用户名,然后在另一个子查询中检查销售人员的用户名。

这是一个指向 SQLFiddle 的链接显示查询执行的结果。它与您要查找的内容相符。我希望这会有所帮助。

关于MySQL 查询 phpmyadmin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21964404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com