I have a table with a "rules" column that looks like this:
{"111_abc":0,"222_def":0,"333_abs":0}
I'd like to write a postgres query to turn this into something like this:
rules
111_abc
222_def
333_abs
I have tried several renditions of json_extract_path or json_array_element - no luck.