SQL 查询表中某一字段不重复的所有数据
如:tableAidnamenumber1a1232b1523c1234d5205e300现在查询number字段不重复的数据,也就是结果只想要id为2,4,5的数据,请...
如:table A id name number
1 a 123
2 b 152
3 c 123
4 d 520
5 e 300
现在查询number字段不重复的数据,也就是结果只想要 id为 2,4,5的数据,请问sql怎么写?
额,没分了,不好意思,谢谢大家了 展开
1 a 123
2 b 152
3 c 123
4 d 520
5 e 300
现在查询number字段不重复的数据,也就是结果只想要 id为 2,4,5的数据,请问sql怎么写?
额,没分了,不好意思,谢谢大家了 展开
6个回答
展开全部
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);
TableDI
2024-07-18 广告
2024-07-18 广告
VLOOKUP函数在Excel中主要用于垂直查找数据,但无法直接一次性匹配多行数据。若要实现这一功能,可以采取以下方法:1. 使用辅助列和数组公式,通过IF函数结合TE电商平台TJOIN函数将多个匹配值合并到一个单元格中。2. 利用VLOO...
点击进入详情页
本回答由TableDI提供
2013-03-11
展开全部
CREATE TABLE #A (
id INT,
name varchar(4),
number INT
);
INSERT INTO #A
SELECT 1, 'a', 123 UNION ALL
SELECT 2, 'b', 152 UNION ALL
SELECT 3, 'c', 123 UNION ALL
SELECT 4, 'd', 520 UNION ALL
SELECT 5, 'e', 300;
GO
SELECT
*
FROM
#A main
WHERE
NOT EXISTS (
SELECT 1
FROM #A sub
WHERE main.id <> sub.id AND main.number = sub.number
);
GO
id name number
----------- ---- -----------
2 b 152
4 d 520
5 e 300
(3 行受影响)
id INT,
name varchar(4),
number INT
);
INSERT INTO #A
SELECT 1, 'a', 123 UNION ALL
SELECT 2, 'b', 152 UNION ALL
SELECT 3, 'c', 123 UNION ALL
SELECT 4, 'd', 520 UNION ALL
SELECT 5, 'e', 300;
GO
SELECT
*
FROM
#A main
WHERE
NOT EXISTS (
SELECT 1
FROM #A sub
WHERE main.id <> sub.id AND main.number = sub.number
);
GO
id name number
----------- ---- -----------
2 b 152
4 d 520
5 e 300
(3 行受影响)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT *
FROM tablea
WHERE (number NOT IN
(SELECT ta.number
FROM tablea AS ta INNER JOIN
tablea AS tb ON ta.number = tb.number AND ta.id <> tb.id))
FROM tablea
WHERE (number NOT IN
(SELECT ta.number
FROM tablea AS ta INNER JOIN
tablea AS tb ON ta.number = tb.number AND ta.id <> tb.id))
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from 表名 where number in
( select number from 表名 group by number having count(id) = 1 )
( select number from 表名 group by number having count(id) = 1 )
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from tablea where numer in(select number from tablea group by number having count(1)=1)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询