aws athena 쿼리 저장
[athena] split string into array
솜주먹팡팡
2021. 5. 6. 01:16
string to array
SELECT regexp_split('abcd', '')
array to string
SELECT array_join(regexp_split('abcd', ''), ' ')