Can anyone help with json.filters?
I have this example table ...

CREATE TABLE tblJson ( 
"id" INT, 
"json_data" JSON, 
 );

 ... with these values...

INSERT INTO tblJson (id, json_data)
VALUES 
(1, '{"data":{"time":"2015-10-09 10:36:35","others":"xxx"}}'), 
(2, '{"data":{"time":"2015-10-09 12:18:20","others":"yyy"}}'), 
(3, '{"data":{"time":"2015-12-30 16:31:22","others":"zzz"}}');
 
The data is ok, I can select the rows, it's ok. Also I can select only the "time" field, like this...
SELECT json.filter(json_data, 'data.time') FROM tblJson;

But now I want to filter the content in "json_data" specific field, i.e. 
SELECT all the rows where  "time like '2015-10-09%'" , or maybe "time = '2015-10-09 12:18:20'"

I tried but can't do it. Any help? Thanks!