gpt4 book ai didi

mysql - 在 mysql 查询中选择唯一行

转载 作者:行者123 更新时间:2023-11-29 05:40:48 24 4
gpt4 key购买 nike

我有问题

SELECT DISTINCT employer.id, employer.name
FROM employers
LEFT JOIN positions ON positions.id = employers.id
LEFT JOIN statuses ON statuses.position = positions.some
WHERE statuses.number = 2

事情是一些我需要来自雇主的独特记录,但我得到了重复,因为 statuses.number 确实像 222 6 777 一样重复,我只需要捕获它们一次。我不想使用 DISTINCT 还有其他方法吗?

最佳答案

使用 GROUP BY 语句

   SELECT employer.id, employer.name
FROM employers
LEFT JOIN positions ON positions.id = employers.id
LEFT JOIN statuses ON statuses.position = positions.some
WHERE statuses.number = 2 GROUP BY employer.id

关于mysql - 在 mysql 查询中选择唯一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6963001/

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