{
"people": {
"Man": {Employe:50, Student:91, Artist:80, Clark:50},
"Woman": {Employe:21, Student:01, Artist:00, k3:30, Clark:68}
}
}
Как я могу обновить значение "Employe" из объекта "Man". Я хочу что-то похожее на запрос ниже mysql.
UPDATE TABLE SET Column=JSON_SET(Column, '$.people.Man.Employe', '51') where Id=1234567890;
MariaDB [**********]> SELECT VERSION();
+--------------------------------------------+
| VERSION() |
+--------------------------------------------+
| 10.3.17-MariaDB-1:10.3.17+maria~bionic-log |
+--------------------------------------------+