Skip to content

Commit

Permalink
Merge pull request #6025 from hantmac/fix/vector-docs
Browse files Browse the repository at this point in the history
docs(vector): fix sql
  • Loading branch information
BohuTANG authored Jun 16, 2022
2 parents 03e4e5f + 260555a commit 8b482ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ SELECT count() AS count, request_method FROM nginx.access_logs GROUP BY request_

- __Top 10 Request IPs__
```sql
SELECT count(*) AS Count, remote_addr AS client FROM nginx.access_logs GROUP BY client ORDER BY count DESC LIMIT 10;
SELECT count(*) AS count, remote_addr AS client FROM nginx.access_logs GROUP BY client ORDER BY count DESC LIMIT 10;
+----------+-----------+
| count | client |
+----------+-----------+
Expand Down

1 comment on commit 8b482ff

@vercel
Copy link

@vercel vercel bot commented on 8b482ff Jun 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

databend – ./

databend-git-main-databend.vercel.app
databend.vercel.app
databend-databend.vercel.app
databend.rs

Please sign in to comment.