diff --git a/sql-non-prepared-plan-cache.md b/sql-non-prepared-plan-cache.md index 38f678d409ec0..7cdba33a9a39d 100644 --- a/sql-non-prepared-plan-cache.md +++ b/sql-non-prepared-plan-cache.md @@ -112,7 +112,7 @@ Note that if you do not add `FORMAT='plan_cache'`, the `EXPLAIN` statement will To verify whether the query hits the cache, execute the following `EXPLAIN FORMAT='plan_cache'` statement: ```sql -EXPLAIN FORMAT='plan_cache' SELECT * FROM (SELECT a+1 FROM t1) t; +EXPLAIN FORMAT='plan_cache' SELECT * FROM (SELECT a+1 FROM t) t; ``` The output is as follows: