Postgresql常用命令函数

1、string_agg()函数

1.1用法: string_agg(expression, delimiter),参数类型(text, text) or (bytea, bytea),返回类型和参数类型一致,第一个参数是字段名,第二个参数是样式,比如,或者#分隔。

1.2实战:

SELECT * FROM address

Postgresql常用命令函数_第1张图片

select province, string_agg(city, ',') from address 
group by province

在这里插入图片描述

select province, string_agg(city, '#') from address 
group by province

Postgresql常用命令函数_第2张图片

2、array_agg()函数

2.1用法: array_agg(expression),参数是字段名,可以将任意类型的字段转换成对应类型的数组。

2.2实战:

select province, array_agg(city) from address 
GROUP BY province

在这里插入图片描述

3、date_part()函数

3.1用法: 通过出生日期计算年龄。

3.2实战:

select name, birthday, date_part('year',age(birthday::timestamp)) as age  from person

Postgresql常用命令函数_第3张图片

你可能感兴趣的:(postgresql,数据库)