使用DISTINCT关键字:
SELECT DISTINCT name FROM s_dept;
使用GROUP BY子句:
SELECT name FROM s_dept GROUP BY name;