DOCS: put LIMIT 10 to the SQL query (#32065)

Provides a more precise equivalent SQL query for the aggregation example in the getting started guide.
This commit is contained in:
ahmedakef 2018-07-16 22:00:57 +02:00 committed by Igor Motov
parent 69c85331b0
commit 5b65e2ccbf
1 changed files with 1 additions and 1 deletions

View File

@ -1122,7 +1122,7 @@ In SQL, the above aggregation is similar in concept to:
[source,sh]
--------------------------------------------------
SELECT state, COUNT(*) FROM bank GROUP BY state ORDER BY COUNT(*) DESC
SELECT state, COUNT(*) FROM bank GROUP BY state ORDER BY COUNT(*) DESC LIMIT 10;
--------------------------------------------------
And the response (partially shown):