select string_to_array('72,71,70,', ','); -- ['72', '71', '70', ]
select string_to_array('72,71,70,', null); -- ['7', '2', ',', '7', '1', ',', '7', '0', ',']
select string_to_array('72,71,70,', 'a'); -- ['72,71,70,']
string_to_array(문자열, 구분자)
Splits the string at occurrences of delimiter and forms the resulting fields into a text array.
unnest(배열)
Expands an array into a set of rows. The array's elements are read out in storage order.
string_agg(컬럼명, 구분자)