我在表格中添加了一个新的JSON数据类型列(bill_plans)
。现在我想像这样更新bill_plans
列
[{ "cycle": 1, "fee": 1000}, { "cycle": 3, "fee": 2800}, { "cycle": 10, "fee": 10000} ]
我成功创建了该列,并且我也能够更新bill_plans列。
该表还包含bill_cycle
和fees
作为现有列,因此我想更新bill_plans
列,如下所示
[{ "cycle": value from the bill_cycle column, "fee": value from the fees column}, { "cycle": value from the bill_cycle column, "fee": value from the fees column}]
简单的更新查询就是这样的
update coaching_class_entries set bill_plans = ('[{"cycle": 1, "fee": 1000}]') where id = 1;
但现在我无法理解如何从表格的现有列更新bill_plans
答案 0 :(得分:1)
MySQL有预定义的函数来对JSON数组和对象执行操作。
您可以使用以下查询来获得结果。
方法1 使用一般语法
UPDATE coaching_class_entries
SET bill_plans = '[ {"cycle": 1, "fee": 1000 } ]'
在这种情况下,您可能需要根据列中的数据更新值。您可以使用CONCAT
运算符来形成json字符串
UPDATE coaching_class_entries
SET bill_plans = CONCAT('[{"cycle":"', bill_cycle, '","fee":"', fees, '"}]')
方法2 使用JSON函数
UPDATE coaching_class_entries
SET bill_plans = JSON_ARRAY(JSON_OBJECT("cycle", bill_cycle, "fee", fees))
您可以在此处参考完整的文档https://dev.mysql.com/doc/refman/5.7/en/json.html