text
returns a text representation of array's dimensions
- array_dims(array[[1,2,3], [4,5,6]])
+ array_dims(ARRAY[[1,2,3], [4,5,6]])
[1:2][1:3]
|
text
concatenates array elements using provided delimiter
- array_to_string(array[1, 2, 3], '~^~')
+ array_to_string(ARRAY[1, 2, 3], '~^~')
1~^~2~^~3
|
text[]
splits string into array elements using provided delimiter
- string_to_array( 'xx~^~yy~^~zz', '~^~')
+ string_to_array('xx~^~yy~^~zz', '~^~')
{xx,yy,zz}