标签:href str www dash 测试数据 htm 部分 html class
注:测试数据在 postgres —— 分组集与部分聚集 中
聚集将多行转变成较少、聚集的行。而窗口则不同,它把当前行与分组中的所有行对比,并且返回的行数没有变化。
组合当前行与 production 的均值
SELECT country, year, production,comsumption, avg(production) over() from t_oil;
分组
组合当前行与 按年份分组后,当前行所在分组的 production 的均值
SELECT country, year, production,comsumption, avg(production) over(partition by year) from t_oil;
组合当前行与 按年份>2000 分组后,当前行所在分组的 production 的均值
SELECT country, year, production,comsumption, avg(production) over(partition by year > 2000) from t_oil;
排序
233
标签:href str www dash 测试数据 htm 部分 html class
原文地址:https://www.cnblogs.com/lemos/p/12057611.html