I would like to perform this query in MYSQL, but the square bracket kills it, assuming that square brackets are reserved?:
select * from policy_data where PolicyData like '%gross_total] => .%'
I'm querying some stored json data, so I'm not sure what my options are! I've tried using back slash in front of it.
like '%gross_total\]%'
I've also tried a replace to no avail:
select * from policy_data where replace(PolicyData, "]", "") like '%gross_total => .%'