Oracle 分析函数
2019年1月6日
没有评论
1. 分析函数前传之聚合函数
1.1 聚合函数定义
Aggregate functions return a single result row based on groups of rows
Aggregate functions return a single result row[......]
Aggregate functions return a single result row based on groups of rows
Aggregate functions return a single result row[......]
create table Fruit
(id int,name varchar(20),
Q1 int, Q2 int,
Q3 int, Q4 int);
insert into Fruit values(1,'苹果',1000,2000,3300,5000);
insert i[......]