Skip to content
Advertisement

Postgres expand JSON with unkown keys

I want to expand a specific row in my table which has a json column with the followingstructure:

Structure of nested JSON is as follows:

I want expand a single row into following format:

Advertisement

Answer

You can use the built-in json_each method to expand your outermost JSON into rows without knowing what the keys are. From that point, you can build the known columns directly.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement