求助SQL语句。 (50分)

  • 主题发起人 主题发起人 sunys
  • 开始时间 开始时间
S

sunys

Unregistered / Unconfirmed
GUEST, unregistred user!
在SQL SERVER数据库里有一个表 TABLE1里
有一个字段FIELD1
E
A
B
A
C
B
D
C
F
然后就是用一句SQL语句,把FIELD1字段下的有相同记录的选出来。
结果就是
FIELD1
A
A
B
B
C
C
 
select field1 from table1
where field1 in
(select field1 from table1 group by field1 having count(*)>1 )
 
接受答案了.
 
直接这么就可以了:
select field1 from table1 group by field1 having count(*) > 1
 

Similar threads

回复
0
查看
999
不得闲
回复
0
查看
1K
不得闲
S
回复
0
查看
700
SUNSTONE的Delphi笔记
S
S
回复
0
查看
661
SUNSTONE的Delphi笔记
S
后退
顶部