如何访问 status 和 date 列中存储为 JSON 的值? 请查看下面的示例行。
status
date
{"1":{"status":true,"date":"2022-03-30"},"3":{"status":true,"date":"2022-03-30 “}}
演示:
set @j = '{"1":{"status":true,"date":"2022-03-30"},"3":{"status":true,"date":"2022-03-30"}}'; select json_extract(@j, '$."1".status') as status; +--------+ | status | +--------+ | true | +--------+
在这种情况下,您可能会意外地需要在 "1" 两边加上双引号才能在 JSON 路径中使用它。
"1"
演示:
在这种情况下,您可能会意外地需要在
"1"
两边加上双引号才能在 JSON 路径中使用它。