主题
返回排序后的新数组。
ARR_SORT(array, ordertype)
ARR_SORT(ARR(2, 1, 4))
[1,2,4]
ARR_SORT("[2, 1, 4]")
ARR_SORT(ARR(2, 1, 4),'desc')
[4,2,1]