搜索

首页  >  问答  >  正文

访问JSON列

如何访问 statusdate 列中存储为 JSON 的值? 请查看下面的示例行。

{"1":{"status":true,"date":"2022-03-30"},"3":{"status":true,"date":"2022-03-30 “}}

P粉345302753P粉345302753234 天前433

全部回复(1)我来回复

  • P粉713846879

    P粉7138468792024-03-31 09:19:18

    演示:

    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 路径中使用它。

    回复
    0
  • 取消回复