我有查詢在MySQL查詢選擇唯一行
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有沒有其他方法?
感謝我一直在尋找它 – Johnds