In the end, I decided: https://github.com/ChrisCinelli/mysql_json with UDF. I described in detail how to compile and install it in README. This works for me on Ubuntu 12.04.5 on gcc version 4.6.3 with MySQL 5.5
You can run:
SELECT json_get('{"a":1}', 'a') => 1 SELECT json_get('{"a":1}', 'b') => NULL SELECT json_get('[1,2,3]', 2) => 3 SELECT json_get('{"a":[2]}', 'a', 0) => 2 #Also: SELECT json_get('{"a":{"b":2}}', 'a') => object SELECT json_get('{"a":[1,2,3]}', 'a') => array # Verify if it is a valid JSON: SELECT ISNULL(json_get('{"a":1}')); => 0 # Valid SELECT ISNULL(json_get('{"a":1')); => 1 # Invalid # Create an example table: CREATE TABLE 'message' ( 'id' int(11) NOT NULL AUTO_INCREMENT, 'data' text, PRIMARY KEY ('id') ); INSERT INTO message (id,data) VALUES(1,'{"from":"chris","title":"Awesome Article","body":"Lorem ipsum dolor sit amet, consectetur adipiscing elit."}'); INSERT INTO message (id,data) VALUES(2,'{"from":"loren","title":"Another Article","body":"Lorem ipsum dolor sit amet, consectetur adipiscing elit."}'); INSERT INTO message (id,data) VALUES(3,'{"from":"jason","title":"How to run a query","body":"Lorem ipsum dolor sit amet, consectetur adipiscing elit."}'); # Run queries on JSON values: SELECT json_get(data,'title') FROM message WHERE id=2; SELECT id,data FROM message WHERE json_get(data,'from')='chris'; SELECT id,data FROM message WHERE json_get(data,'title') LIKE '%Article%';
source share