Extracts an array from a native JSON type as ARRAY<JSON>.
ARRAY<JSON>Diperbarui: 13 Jun 2026JSON_QUERY_ARRAY(json_expression [, json_path])The native JSON value
JSONPath to the array
1 SELECT 2 JSON_QUERY_ARRAY(JSON '{"nums": [1, 2, 3]}', '$.nums') as numbers;
Extracts an array from a native JSON value.
| numbers |
|---|
| [1, 2, 3] |
Sudah paham JSON_QUERY_ARRAY? Latih langsung di browser
Latihan interaktif, langsung di browser.