Skip to Main Content
Spotfire Ideas Portal
Status Future Consideration
Categories sql support
Created by Guest
Created on Nov 13, 2023

SQL JSON parsing in TDV should be improved

Using JSON_TABLE is cumbersome, and there are no examples on how to do JSON parsing in a simple way using a transformation (can it even be done?).

As an example, Postgres has a simpler syntax allowing queries like this :

SELECT
id,
data::json->'name' as name,
data::json->'author' ->> 'last_name' as author
FROM books;
  • Attach files