「PostgreSQL入門」regexp_split_to_array()で文字列を分割する
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)