99热九九这里只有精品10,99国内精品久久久久久久软件,久久久亚洲最大ⅹxxx,99久久99久久精品免费,亚洲午夜电影在线观看,四虎少妇做爰免费视频网站四,亚洲第一在线播放

首頁(yè) 服務(wù) 產(chǎn)品 文檔 關(guān)于

sqlserver 按某列值的重復(fù)次數(shù)排序

表格article按標(biāo)題重復(fù)次數(shù)降序列表查詢,返回title和title值的重復(fù)次數(shù):

status=1條件為article的列status

select top 3 tb1.* from (select title,count(*) as count from article where status=1 group by title) as tb1 order by tb1.count desc