From c24372158c386739e2b2a99f028d78e321e60ed8 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Tue, 15 Sep 2026 14:24:19 +0900 Subject: [PATCH] fix JSON_DEPTH() example path to match the actual JSON document Co-Authored-By: Claude Sonnet 5 --- functions-and-operators/json-functions/json-functions-return.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions-and-operators/json-functions/json-functions-return.md b/functions-and-operators/json-functions/json-functions-return.md index ed0aff6eb3520..7e1aa30358d6a 100644 --- a/functions-and-operators/json-functions/json-functions-return.md +++ b/functions-and-operators/json-functions/json-functions-return.md @@ -17,7 +17,7 @@ In the following example, `JSON_DEPTH()` returns `3` because there are three lev - root (`$`) - weather (`$.weather`) -- weather current (`$.weather.sunny`) +- weather current (`$.weather.current`) ```sql SELECT JSON_DEPTH('{"weather": {"current": "sunny"}}');