问题
Is there a function in mysql to sort a json
field?
SELECT new FROM mytable
["orange", "apple"]
==> Sorting the json array
SELECT SORTED(new) FROM mytable
["apple", "orange"]
来源:https://stackoverflow.com/questions/53677820/sorted-json-array-field