这个算是疑难杂证的题目
我不知道这个是不是难题.希望大家帮我添加一下: 
 原来的语句是: 
 select   ChannelID,ClassID,Title,count(*)   from   PE_Article 
 group   by   ChannelID,ClassID,Title 
 having   count(*)> =2   and   ChannelID= '1035 ' 
 我想添加一个已经有了字段(AritleID)的了,和我查询的结果是对应的.那么怎么才能把这个字段也一起显示出来呢.同时又能显示出上面的那条语句的数据呢 
------解决方案--------------------select *  
 from PE_Article a 
 where exists  
 ( 
 	select 1  
 	from 
 	( 
 	select ChannelID,ClassID,Title,count(*) as csum 
 	from PE_Article 
 	group by ChannelID,ClassID,Title 
 	having count(*)> =2 and ChannelID= '1035 ' 
 	) b 
 	where a.ChannelID = b.ChannelID and a.ClassID=b.ClassID and a.Title=b.Title 
 )   
 --try