「PostgreSQL入門」regexp_split_to_array()で文字列を分割する

2017年9月28日

SQL構文
> select regexp_split_to_array('hello world’,’ ');
regexp_split_to_array
———————–
{hello,world}
(1 row)

> select regexp_split_to_array('hello’,");
regexp_split_to_array
———————–
{h,e,l,l,o}
(1 row)

PostgreSQL

Posted by arkgame