次の例では、JSON_KEYSを使用してJSONオブジェクトのキー名を取得します。深さは指定されていないので、深さ全体が検索され、すべてのレベルでキーが返されます。
SELECT * from JSON_KEYS ( ON (SELECT json_data FROM json_table)) AS json_data;
結果:
KEYS ---- “coord” “coord”.”lon” “coord”.”lat” “sys” “sys”.”country” “sys”.”sunrise” “sys”.”sunset” “weather” “weather”[0].”id” “weather”[0].”main” “weather”[0].”description” “weather”[0].”icon” “base” “main” “main”.”temp” “main”.”humidity” “main”.”pressure” “main”.”temp_min” “main”.”temp_max” “wind” “wind”.”speed” “wind”.”deg” “clouds” “clouds”.”all” “dt” “id” “name” “cod”