SQL 查询表中某一字段不重复的所有数据

SQL 查询表中某一字段不重复的所有数据,第1张

1、创建测试表,

create table test_dis(id number, name varchar2(20), value number(10))

2、插入测试数据

insert into test_dis values(1,'a',123)

insert into test_dis values(2,'b',152)

insert into test_dis values(3,'c',123)

insert into test_dis values(4,'d',520)

insert into test_dis values(5,'e',300)

commit

3、查询表中全量数据,select t.*, rowid from test_dis t

4、编写sql,查询表中某一字段不重复的所有数据,可以发现只有id为2,4,5的记录查询出。

 select * from test_dis t where value in (select value from test_dis group by value having count(*)=1)

sql语句要select某字段不重复数据的步骤如下:

我们需要准备的材料分别是:电脑、sql查询器。

1、首先,打开sql查询器,连接上要查询的数据库表,例如test2表。

2、点击“查询”按钮,输入:select A,B,C from test2 group by A。

3、点击“运行”按钮,这时字段A会以不重复的形式被查询出所有数据。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6754843.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-27
下一篇 2023-03-27

发表评论

登录后才能评论

评论列表(0条)

保存