group by 在sqlserver与oracle中的差别

WBOY
リリース: 2016-06-07 15:10:04
オリジナル
1420 人が閲覧しました

在sqlServer中group by 不能作为子句查询: 如:select * from (select deptno,count(*) counts from emp group by deptno) 上面在sqlserver中运行会报错,说明sqlserver中group by 不能作为子句 下面sql语句为查找人数最多的部门以及该部门号: select * fr

在sqlServer中group by 不能作为子句查询:

如:select * from (select deptno,count(*) counts from emp group by deptno)

上面在sqlserver中运行会报错,说明sqlserver中group by 不能作为子句



下面sql语句为查找人数最多的部门以及该部门号:

select * from (select deptno,count(*) counts from emp group by deptno) where counts =  (select max(count) from (select deptno,count(*) count from emp group by deptno));



人数最多的专业在sqlserver中查询:

 select classID,COUNT(*) from student group by classID having 
COUNT(*)=(select top 1 COUNT(*) as 人数 from student group by classID order by COUNT(*))
or
COUNT(*)=(select top 1 COUNT(*) as 人数 from student group by classID order by COUNT(*) desc) 


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!