I have a table that has a column that was created by
json_object_agg(eventid,date_now_range) eventids_range
this what the data looks like stored in the table
{ "527813" : 184, "525947" : 133, "529957" : 178, "531490" : 143 }
I want to select this record and have the key and value be its own record
so this
select eventids_range from special_event_conflicts
would return something like this
col a col b
527813 184
525947 133
529957 178
531490 143