Postgres jsonb_populate_record() function
Casts a JSONB object to a record
The jsonb_populate_record
function is used to populate a record type with values from a JSONB
object. It is useful for parsing JSONB
data received from external sources, particularly when merging it into an existing record.
Function signature
This function takes two arguments: a base record of a row type (which can even be a NULL
record) and a JSONB
object. It returns the record updated with the JSONB
values.
Example usage
Consider a database table that tracks employee information. When you receive employee information as JSONB
records, you can use jsonb_populate_record
to ingest the data into the table.
Here we create the employees
table with some sample data.
To illustrate, we start with a NULL
record and cast the input JSONB
payload to the employees
record type.
This query returns the following result:
Advanced examples
jsonb_populate_record
Handling partial data with For data points where the JSONB
objects have missing keys, jsonb_populate_record
can still cast them into legible records.
Say we receive records for a bunch of employees who are known to be in Sales, but the department
field is missing from the JSONB
payload. We can use jsonb_populate_record
with the default value specified for a field while the other fields are populated from the JSONB
payload, as in this example:
This query returns the following:
jsonb_populate_record
with custom types
Using The base record doesn't need to have the type of a table row and can be a custom Postgres type too. For example, here we first define a custom type address
and use jsonb_populate_record
to cast a JSONB
object to it:
This query returns the following result:
Additional considerations
Alternative options
- jsonb_to_record - It can be used similarly, with a couple differences.
jsonb_populate_record
can be used with a base record of a pre-defined type, whereasjsonb_to_record
needs the record type defined inline in theAS
clause. Further,jsonb_populate_record
can specify default values for missing fields through the base record, whereasjsonb_to_record
must assign them NULL values. jsonb_populate_recordset
- It can be used similarly to parseJSONB
, the difference being that it returns a set of records instead of a single record. For example, if you have an array ofJSONB
objects, you can usejsonb_populate_recordset
to convert each object into a new row.- json_populate_record - It has the same functionality to
jsonb_populate_record
, but acceptsJSON
input instead ofJSONB
.
Resources
Last updated on