Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ORDER BY name, jsonb_extract_path_text (values.jsonb,'id'), jsonb_extract_path_text (values.jsonb,'value')

---- can also use:   ORDER BY name, values.jsonb #>> '{id}', values.jsonb #>> '{value}'


4. Extracting Arrays - Alternative to using cross joins, and how to prevent records without the array elements from dropping out

...