json_extract in mysql code example
Example 1: mysql json get value
SELECT JSON_EXTRACT('{"a": 1, "b": 2, "c": 3}', '$.b') AS 'Result';
Example 2: mysql json extract escape
SELECT JSON_EXTRACT('{"user.name": "Aztalan"}', '$."user.name"');
Example 3: json_extract in non native query
Query query = em.createQuery("select o from Product o FUNCTION('JSON_EXTRACT', o.des, '$.org') = :org");