在PostgreSQL 中可以使用Array数据结构,例如
1
2
|
select array[1,2,3];
return {1,2,3}
|
但是,如果
1
2
|
select array[1,2,3][1]; --会报错
select ( select array[1,2,3])[1] --可以使用
|
那么在用正则匹配函数 regexp_match 就会遇到这样的问题,如
1
2
|
select regexp_match( '123-123' , '(\d+)-(\d+)' ); --return {123, 123}
select regexp_match( '123-123' , '(\d+)-(\d+)' )[1]; --报错
|
但是,如果你想获取其中一个元素,你就得使用嵌套查询,如
1
|
select ( select regexp_match( '123-123' , '(\d+)-(\d+)' ))[1]; --return 123
|
其次,你如果要用regexp_matches 加上全局搜索,可能会生成多行数据,如
1
2
3
4
|
select 'a' , array( select regexp_matches( 'aa-aa' , '(aa)+' , 'g' ));
-- return 2 rows
a {aa}
a {aa}
|
合并为一行,需要array函数
1
2
3
|
select 'a' , array( select regexp_matches( 'aa-aa' , '(aa)+' , 'g' ));
--return
a {{aa},{aa}}
|
取其中的元素
1
2
3
|
select a, b[1][1] from ( select 'a' as a, array( select regexp_matches( 'aa-aa' , '(aa)+' , 'g' )) as b) as c;
--return
aa
|
补充:PostgreSQL的 array_to_string 功能
开始
用 第二个参数连接数组元素,例:
1
2
3
4
5
6
|
postgres=# select array_to_string (ARRAY[1,2,3], '##' );
array_to_string
-----------------
1##2##3
(1 row)
postgres=#
|
结束~
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。
原文链接:https://blog.csdn.net/sinat_36414791/article/details/80671702