PostgreSql 聚合函数string_agg与array_agg

PostgreSql 聚合函数string_agg与array_agg,第1张

概述string_agg,array_agg 这两个函数的功能大同小异,只不过合并数据的类型不同。 https://www.postgresql.org/docs/9.6/static/functions-aggregate.html array_agg(expression) 把表达式变成一个数组 一般配合 array_to_string() 函数使用 string_agg(expression,

string_agg,array_agg 这两个函数的功能大同小异,只不过合并数据的类型不同。
https://www.postgresql.org/docs/9.6/static/functions-aggregate.html

array_agg(Expression) 把表达式变成一个数组 一般配合 array_to_string() 函数使用
string_agg(Expression,delimiter) 直接把一个表达式变成字符串

案例:

create table(empno smallint,ename varchar(20),job varchar(20),mgr smallint,hiredate date,sal bigint,comm bigint,deptno smallint);insert into jinbo.employee(empno,ename,job,mgr,hiredate,sal,comm,deptno) values (7499,'ALLEN','SALEMAN',7698,'2014-11-12',16000,300,30);insert into jinbo.employee(empno,deptno) values (7654,'MARTIN','2016-09-12',12000,1400,30);select * from jinbo.employee; empno | ename  |   job   | mgr  |  hiredate  |  sal  | comm | deptno -------+--------+---------+------+------------+-------+------+--------  7499 | ALLEN  | SALEMAN | 7698 | 2014-11-12 | 16000 |  300 |     30  7566 | JOnes  | MANAGER | 7839 | 2015-12-12 | 32000 |    0 |     20  7654 | MARTIN | SALEMAN | 7698 | 2016-09-12 | 12000 | 1400 |     30(3 rows)

1.查询同一个部门下的员工且合并起来

方法1:select deptno,string_agg(ename,',') from jinbo.employee group by deptno; deptno |  string_agg  --------+--------------     20 | JOnes     30 | ALLEN,MARTIN方法2:select deptno,array_to_string(array_agg(ename),') from jinbo.employee group by deptno; deptno | array_to_string --------+-----------------     20 | JOnes     30 | ALLEN,MARTIN

2、在1条件的基础上,按ename 倒叙合并

select deptno,' order by ename desc) from jinbo.employee group by deptno; deptno |  string_agg  --------+--------------     20 | JOnes     30 | MARTIN,ALLEN

3、按数组格式输出使用 array_agg

select deptno,array_agg(ename) from jinbo.employee group by deptno; deptno |   array_agg    --------+----------------     20 | {JOnes}     30 | {ALLEN,MARTIN}
总结

以上是内存溢出为你收集整理的PostgreSql 聚合函数string_agg与array_agg全部内容,希望文章能够帮你解决PostgreSql 聚合函数string_agg与array_agg所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1171644.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存