Trailing slashes fix

This commit is contained in:
rfraposa 2023-03-16 14:21:32 -05:00
parent 7cb53ebc21
commit 9ee7b82e64
7 changed files with 11 additions and 11 deletions

View File

@ -4,7 +4,7 @@ sidebar_position: 32
sidebar_label: SELECT
---
# SELECT Query
# SELECT Query
`SELECT` queries perform data retrieval. By default, the requested data is returned to the client, while in conjunction with [INSERT INTO](../../../sql-reference/statements/insert-into.md) it can be forwarded to a different table.
@ -44,7 +44,7 @@ Specifics of each optional clause are covered in separate sections, which are li
- [WHERE clause](../../../sql-reference/statements/select/where.md)
- [GROUP BY clause](../../../sql-reference/statements/select/group-by.md)
- [LIMIT BY clause](../../../sql-reference/statements/select/limit-by.md)
- [HAVING clause](../../../sql-reference/statements/select/having)
- [HAVING clause](../../../sql-reference/statements/select/having.md)
- [LIMIT clause](../../../sql-reference/statements/select/limit.md)
- [OFFSET clause](../../../sql-reference/statements/select/offset.md)
- [UNION clause](../../../sql-reference/statements/select/union.md)

View File

@ -16,7 +16,7 @@ sidebar_position: 27
- [MaterializeMySQL](../../engines/database-engines/materialized-mysql.md)
- [Lazy](../../engines/database-engines/lazy)
- [Lazy](../../engines/database-engines/lazy.md)
- [Atomic](../../engines/database-engines/atomic.md)

View File

@ -1,5 +1,5 @@
---
slug: /zh/faq/integration/
slug: /zh/faq/integration/
title: 关于集成ClickHouse和其他系统的问题
toc_hidden_folder: true
sidebar_position: 4
@ -17,6 +17,6 @@ sidebar_label: Integration
!!! info "没看到你要找的东西吗?"
查看[其他faq类别](../../faq/)或浏览左边栏中的主要文档文章。
查看[其他faq类别](../../faq/index.md)或浏览左边栏中的主要文档文章。
{## [原文](https://clickhouse.com/docs/en/faq/integration/) ##}

View File

@ -1,5 +1,5 @@
---
slug: /zh/faq/operations/
slug: /zh/faq/operations/
title: 关于操作ClickHouse服务器和集群的问题
toc_hidden_folder: true
sidebar_position: 3
@ -13,9 +13,9 @@ sidebar_label: Operations
- [如果想在生产环境部署,需要用哪个版本的 ClickHouse 呢?](../../faq/operations/production.md)
- [是否可能从 ClickHouse 数据表中删除所有旧的数据记录?](../../faq/operations/delete-old-data.md)
- [ClickHouse支持多区域复制吗?](../../faq/operations/multi-region-replication.md)
!!! info "没看到你要找的东西吗?"
查看[其他faq类别](../../faq/)或浏览左边栏中的主要文档文章。
查看[其他faq类别](../../faq/index.md)或浏览左边栏中的主要文档文章。
{## [原文](https://clickhouse.com/docs/en/faq/production/) ##}

View File

@ -14,6 +14,6 @@ sidebar_label: 使用案例
- [我能把 ClickHouse 当做Key-value 键值存储来使用吗?](../../faq/use-cases/key-value.md)
!!! info "没找到您所需要的内容?"
请查看[其他常见问题类别](../../faq/)或浏览左侧边栏中的主要文档文章。
请查看[其他常见问题类别](../../faq/index.md)或浏览左侧边栏中的主要文档文章。
{## [原始文档](https://clickhouse.com/docs/en/faq/use-cases/) ##}

View File

@ -20,7 +20,7 @@ sidebar_position: 31
- [CHECK TABLE](../../sql-reference/statements/check-table.mdx)
- [DESCRIBE TABLE](../../sql-reference/statements/describe-table.mdx)
- [DETACH](../../sql-reference/statements/detach.mdx)
- [DROP](../../sql-reference/statements/drop)
- [DROP](../../sql-reference/statements/drop.md)
- [EXISTS](../../sql-reference/statements/exists.md)
- [KILL](../../sql-reference/statements/kill.mdx)
- [OPTIMIZE](../../sql-reference/statements/optimize.mdx)

View File

@ -41,7 +41,7 @@ SELECT [DISTINCT] expr_list
- [WHERE 子句](../../../sql-reference/statements/select/where.md)
- [GROUP BY 子句](../../../sql-reference/statements/select/group-by.md)
- [LIMIT BY 子句](../../../sql-reference/statements/select/limit-by.md)
- [HAVING 子句](../../../sql-reference/statements/select/having)
- [HAVING 子句](../../../sql-reference/statements/select/having.md)
- [SELECT 子句](#select-clause)
- [DISTINCT 子句](../../../sql-reference/statements/select/distinct.md)
- [LIMIT 子句](../../../sql-reference/statements/select/limit.md)