jSonColoumn-数据类型(TEXT)

样本行

{"scheduledTime":"2014-01-29 19:55:00"}
{"scheduledTime":"2014-01-29 22:55:00"}
{"scheduledTime":"2014-01-29 15:55:00"}
{"scheduledTime":"2014-01-29 08:55:00"}


我需要使用存储在“ jSonColoumn”列中的json对象的“ scheduledTime”键对此结果进行排序。 (只是我需要根据json的“ scheduledTime”键对结果进行排序)

谢谢

最佳答案

some MySQL JSON functions

像这样:

select json_extract(columnX, '{"scheduledTime"}')

关于mysql - 如何基于存储在列中的json对象的json键排序mysql结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21434524/

10-09 12:35