在SQL语句中提取唯一值怎么写

2024-12-19 22:01:42
推荐回答(4个)
回答1:

提取不重复的数据行,可以使用 select distinct * from tab_name。

每列提取唯一值,只能一列列的查询,比如:
select distinct 处名称 from tab_name

回答2:

加上distinct是去重复值,如果是要取某个字段在表里只出现过一次的可以写
select 字段 from 表 where 字段 in (select 字段 from 表 group by 字段 having count(字段)=1)

回答3:

加上distinct关键字

回答4:

select distinct 字段 from 表;