当前位置:网站首页>MySQL窗口函数

MySQL窗口函数

2022-08-03 16:02:00 飞Link

一、窗口函数介绍

一、描述

窗口函数是类似于可以聚合值的函数,例如sum(),count(),max()。但是窗口函数又与普通的聚合函数不同,它不会对结果进行分组,使得输出中的行数与输入中的行数相同

二、用法和参数

select 聚合函数 over(partition by(条件) order by(条件)) from 表;

二、窗口函数和聚合函数的对比

一、聚合函数

select type,count(type) from product group by type;

在这里插入图片描述

二、窗口函数

select type,count(*) over (partition by type) from product;

在这里插入图片描述

原网站

版权声明
本文为[飞Link]所创,转载请带上原文链接,感谢
https://blog.csdn.net/feizuiku0116/article/details/126127896