提取不重复的数据行,可以使用 select distinct * from tab_name。
每列提取唯一值,只能一列列的查询,比如:
select distinct 处名称 from tab_name
加上distinct是去重复值,如果是要取某个字段在表里只出现过一次的可以写
select 字段 from 表 where 字段 in (select 字段 from 表 group by 字段 having count(字段)=1)
加上distinct关键字
select distinct 字段 from 表;