简体   繁体   中英

Json not enabled for current project

I have an issue with the PARSE_JSON function in google big query when trying to convert a string formatted json into a json format.

SELECT PARSE_JSON(data) FROM table

Error received: "Json not enabled for current project"

Parsing JSON is already possible, if a single value is extraced from a JSON:

Select JSON_VALUE(PARSE_JSON(data).A)  FROM
(
Select '{"A":5,"B":12}' as data
)

For using PARSE_JSON and store the result in table field, you need to enroll in the preview (March 2022), apply here: https://cloud.google.com/bigquery/docs/reference/standard-sql/json-data

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM