除去相同的行
java
SELECT DISTINCT 列名 FROM 表名;
示例:查询employees表,显示唯一的部门ID
java
select distinct department_id from employees;