There is a table channels in which there is a column users json
[ { "date": "2019-04-14", "user": 630184594 }, { "date": "2019-04-14", "user": 345344594 } ] It is necessary to remove the element in which user = 630184594
Try so
SELECT JSON_REMOVE(users,'$.user') = "630184594" AS 'Result' FROM channels But the item is not removed.
users, JSON_OBJECT ('user',% s)) - Ivan Chernoknizhnikov 10:48 pm