2020-07-10
阅读量:
974
MySQL开窗函数
开窗函数格式为 函数(字段) over(partition by 要分区的字段名 order by 要排序的字段名 asc/desc 滑动窗口)
滑动窗口格式为between frame_start and frame_end 即between ..1. and 2... 形式
其中1和2的代码为以下几种:
current row 边界是当前行,一般和其他范围关键字一起使用
unbounded preceding 边界是分区中的第一行
unbounded following边界是分区中的最后一行
expr preceding 边界是当前行减去expr的值
expr following 边界是当前行加上expr的值
24.4185
4
2
关注作者
收藏
评论(0)
发表评论
暂无数据
推荐帖子
0条评论
0条评论
0条评论