How to select DISTINCT rows without having the ORDER BY field selected

前端 未结 6 957
我寻月下人不归
我寻月下人不归 2021-01-06 15:49

So I have two tables students (PK sID) and mentors (PK pID). This query

SELECT s.pID
FROM students s JOIN mentors m ON s.pID = m.pID
WHERE m.tags LIKE \'%a%\         


        
6条回答
  •  执笔经年
    2021-01-06 16:34

    Use this

    SELECT DISTINCT s.pID as PID
    FROM students s JOIN mentors m ON s.pID = m.pID
    WHERE m.tags LIKE '%a%'
    ORDER BY s.sID DESC,1;
    

提交回复
热议问题