当前位置:编程学习 > C#/ASP.NET >>

同志们我这个SQL查询怎么写?

同志们我这个SQL查询怎么写?
tie_table.id2 无重复的
tie_Reply.id2重复的
2者是对应关系
查询出tie_Reply.id2重复id2最多的.
然后得到tie_Reply.id2按从大到小排出来啊 --------------------编程问答--------------------
select id2 from tie_reply group by id2 having sum(id2)>tie_reply.sum(id2)
--------------------编程问答-------------------- select tie_Reply.id2,COUNT(*) from tie_Reply group by tie_Reply.id2 DESC --------------------编程问答-------------------- select distinct id2 from tie_reply order by count(id2) desc --------------------编程问答-------------------- select tie_Reply.id2, count(tie_Reply.id2) from tie_Reply group by  tie_Reply.id2  desc
lz问的好像跟tie_table.id2就没什么关系了吧?
--------------------编程问答-------------------- 同志们我这个SQL查询怎么写? 
tie_table.id2   无重复的 
tie_Reply.id2重复的 
2者是对应关系 
查询出tie_Reply.id2重复id2最多的. 
然后得到tie_Reply.id2按从大到小排出来啊

我的表结构如下
tie_table.id2
1
2
3
4
5
6
tie_Reply.id2
1
1
2
2
2
3
4
5
5
5
5
5
5
查询出来的是tie_table.id2排序
5
2
1
3
4 --------------------编程问答--------------------

select * from tie_Reply group by id2 order by count(1) desc
--------------------编程问答--------------------
 select id2 from tie_Reply group by id2 order by count(1) desc
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,