Questions tagged [json-extract]

The focus of this tag is on inquiries involving the retrieval and interpretation of data elements or sequences within JSON objects, as well as transforming and visualizing these data components.

json_extract_scalar is failing to retrieve a value from a JSON string that contains single quotes

I have a record in my Athena database that contains a JSON string as follows. {'is_referred': False, 'landing_page': '/account/register'} When attempting to extract the value of landing_page using the query below, it returns a null value. select json ...