diff --git a/.translation-init b/.translation-init index 4aa9145ea7..6bd421e08d 100644 --- a/.translation-init +++ b/.translation-init @@ -1 +1 @@ -Translation initialization: 2025-10-21T10:45:23.526397 +Translation initialization: 2025-10-21T12:48:08.947129 diff --git a/docs/cn/sql-reference/20-sql-functions/20-other-functions/index.md b/docs/cn/sql-reference/20-sql-functions/20-other-functions/index.md new file mode 100644 index 0000000000..40c1e17d33 --- /dev/null +++ b/docs/cn/sql-reference/20-sql-functions/20-other-functions/index.md @@ -0,0 +1,16 @@ +--- +title: 其他函数 +--- + +本节汇集了不属于主要功能组的各种实用工具。 + +| 函数 | 描述 | +|----------|-------------| +| [ASSUME_NOT_NULL](assume-not-null.md) | 提示可空列中的值永远不为 NULL | +| [EXISTS](exists.md) | 如果子查询产生任何行,则返回 TRUE | +| [GROUPING](grouping.md) | 揭示输出列是否在 GROUPING SETS 中被聚合 | +| [HUMANIZE_NUMBER](humanize-number.md) | 使用单位后缀格式化大数字 | +| [HUMANIZE_SIZE](humanize-size.md) | 将字节数格式化为可读单位 | +| [REMOVE_NULLABLE](remove-nullable.md) | 从列值中去除可空性 | +| [TO_NULLABLE](to-nullable.md) | 将值转换为可空类型 | +| [TYPEOF](typeof.md) | 返回值的数据类型名称 | \ No newline at end of file diff --git a/docs/cn/sql-reference/20-sql-functions/index.md b/docs/cn/sql-reference/20-sql-functions/index.md index c0b1dd06f1..4e32955ba4 100644 --- a/docs/cn/sql-reference/20-sql-functions/index.md +++ b/docs/cn/sql-reference/20-sql-functions/index.md @@ -2,72 +2,72 @@ title: SQL 函数参考 --- -Databend 为所有类型的数据处理提供了全面的 SQL 函数。函数按重要性和使用频率进行组织。 +Databend 为各类数据处理提供了全面的 SQL 函数。函数按重要性和使用频率组织。 ## 核心数据函数 | 类别 | 描述 | |----------|-------------| -| [数值函数](./04-numeric-functions/index.md) | 数学运算和计算 | -| [字符串函数](./06-string-functions/index.md) | 文本操作和字符串处理 | -| [日期和时间函数](./05-datetime-functions/index.md) | 日期、时间和时态操作 | -| [时间间隔函数](./05-interval-functions/index.md) | 时间单位转换和时间间隔创建 | -| [转换函数](./02-conversion-functions/index.md) | 类型转换和数据格式转换 | -| [条件函数](./03-conditional-functions/index.md) | 逻辑和控制流操作 | +| [数值函数](./04-numeric-functions/index.md) | 数学运算与计算 | +| [字符串函数](./06-string-functions/index.md) | 文本操作与字符串处理 | +| [日期和时间函数](./05-datetime-functions/index.md) | 日期、时间及时间相关操作 | +| [转换函数](./02-conversion-functions/index.md) | 类型转换与数据格式转换 | +| [条件函数](./03-conditional-functions/index.md) | 逻辑与控制流操作 | ## 分析函数 | 类别 | 描述 | |----------|-------------| | [聚合函数](./07-aggregate-functions/index.md) | 跨多行的统计计算 | -| [窗口函数](./08-window-functions/index.md) | 使用窗口操作进行高级分析 | -| [位图函数](./01-bitmap-functions/index.md) | 高性能位图操作和分析 | +| [窗口函数](./08-window-functions/index.md) | 基于窗口操作的高级分析 | -## 半结构化数据 +## 结构化和半结构化数据 | 类别 | 描述 | |----------|-------------| -| [半结构化函数](./10-semi-structured-functions/index.md) | JSON、数组、对象和嵌套数据处理 | +| [结构化和半结构化函数](./10-semi-structured-functions/index.md) | JSON、数组、对象及嵌套数据处理 | -## AI 与搜索 +## 搜索函数 | 类别 | 描述 | |----------|-------------| -| [向量函数](./11-vector-functions/index.md) | 向量相似度和距离计算 | -| [搜索函数](./10-search-functions/index.md) | 全文搜索和相关性评分 | +| [全文搜索函数](./10-search-functions/index.md) | 全文搜索与相关性评分 | -## 数据管理 +## 向量函数 | 类别 | 描述 | |----------|-------------| -| [表函数](./17-table-functions/index.md) | 文件检查、数据生成和系统信息 | -| [字典函数](./19-dictionary-functions/index.md) | 实时外部数据源查询(MySQL、Redis) | -| [序列函数](./18-sequence-functions/index.md) | 自增序列值生成 | +| [向量函数](./11-vector-functions/index.md) | 向量相似度与距离计算 | -## 空间函数 +## 地理空间函数 | 类别 | 描述 | |----------|-------------| -| [地理函数](./09-geo-functions/index.md) | 地理坐标和 H3 地理空间操作 | -| [几何函数](./09-geometry-functions/index.md) | 几何形状和空间计算 | +| [地理空间函数](./09-geospatial-functions/index.md) | 几何、GeoHash 与 H3 空间操作 | -## 安全与完整性 +## 数据管理 | 类别 | 描述 | |----------|-------------| -| [哈希函数](./12-hash-functions/index.md) | 数据哈希和完整性验证 | -| [UUID 函数](./13-uuid-functions/index.md) | 通用唯一标识符生成 | -| [IP 地址函数](./14-ip-address-functions/index.md) | 网络地址操作和验证 | +| [表函数](./17-table-functions/index.md) | 文件检查、数据生成与系统信息 | +| [系统函数](./16-system-functions/index.md) | 系统信息与管理操作 | +| [上下文函数](./15-context-functions/index.md) | 当前会话、用户及数据库信息 | -## 系统函数 +## 安全与完整性 | 类别 | 描述 | |----------|-------------| -| [系统函数](./16-system-functions/index.md) | 系统信息和管理操作 | -| [上下文函数](./15-context-functions/index.md) | 当前会话、用户和数据库信息 | +| [哈希函数](./12-hash-functions/index.md) | 数据哈希与完整性验证 | +| [位图函数](./01-bitmap-functions/index.md) | 高性能位图操作与分析 | +| [UUID 函数](./13-uuid-functions/index.md) | 通用唯一标识符生成 | +| [IP 地址函数](./14-ip-address-functions/index.md) | 网络地址操作与验证 | -## 开发工具 +## 实用工具函数 | 类别 | 描述 | |----------|-------------| -| [测试函数](./19-test-functions/index.md) | 测试和调试工具 | \ No newline at end of file +| [间隔函数](./05-interval-functions/index.md) | 时间单位转换与间隔创建 | +| [序列函数](./18-sequence-functions/index.md) | 自增序列值生成 | +| [字典函数](./19-dictionary-functions/index.md) | 实时外部数据源查询(MySQL、Redis) | +| [测试函数](./19-test-functions/index.md) | 测试与调试工具 | +| [其他函数](./20-other-functions/index.md) | 杂项辅助与实用工具 | \ No newline at end of file