diff --git a/docs/1.7/69.md b/docs/1.7/69.md index 912d8ce40aae9dfc6c62a0fdacbff3eb4134af9e..c67b517d62057e8685bdb9e0439db6e228fdd69d 100644 --- a/docs/1.7/69.md +++ b/docs/1.7/69.md @@ -3923,7 +3923,7 @@ GROUP_ID() -Returns an integer that uniquely identifies the combination of grouping keys. +返回唯一标识分组键组合的整数。 @@ -3934,17 +3934,17 @@ GROUPING_ID(expression1 [, expression2]* ) - | Returns a bit vector of the given grouping expressions. | + | 返回给定分组表达式的位向量。 | -| Grouping functions | Description | +| 分组函数 | 描述 | | --- | --- | -| Grouping functions | Description | +| 分组函数 | 描述 | | --- | --- | -### Hash Functions +### Hash 函数(Hash Functions) -| Hash functions | Description | +| Hash 函数 | 描述 | | --- | --- | | @@ -3956,7 +3956,7 @@ MD5(string) -Returns the MD5 hash of _string_ as a string of 32 hexadecimal digits; returns NULL if _string_ is NULL. +以 32 个十六进制数字的字符串返回 _string_ 的 MD5 哈希值;如果 _string_ 为 NULL,则返回NULL。 @@ -3966,7 +3966,7 @@ SHA1(string) -Returns the SHA-1 hash of _string_ as a string of 40 hexadecimal digits; returns NULL if _string_ is NULL. +以 40 个十六进制数字的字符串返回 _string_ 的 SHA-1 哈希值;如果 _string_ 为 NULL,则返回 NULL。 @@ -3976,7 +3976,7 @@ SHA224(string) -Returns the SHA-224 hash of _string_ as a string of 56 hexadecimal digits; returns NULL if _string_ is NULL. +以 56 个十六进制数字的字符串返回 _string_ 的 SHA-224 哈希值;如果 _string_ 为 NULL,则返回NULL。 @@ -3986,7 +3986,7 @@ SHA256(string) -Returns the SHA-256 hash of _string_ as a string of 64 hexadecimal digits; returns NULL if _string_ is NULL. +以 64 个十六进制数字的字符串返回 _string_ 的 SHA-256 哈希值;如果 _string_ 为 NULL,则返回 NULL。 @@ -3996,7 +3996,7 @@ SHA384(string) -Returns the SHA-384 hash of _string_ as a string of 96 hexadecimal digits; returns NULL if _string_ is NULL. +以 96 个十六进制数字的字符串返回 _string_ 的 SHA-384 哈希值;如果 _string_ 为 NULL,则返回 NULL。 @@ -4006,7 +4006,7 @@ SHA512(string) -Returns the SHA-512 hash of _string_ as a string of 128 hexadecimal digits; returns NULL if _string_ is NULL. +以 128 个十六进制数字的字符串返回 _string_ 的 SHA-512 哈希值;如果 _string_ 为 NULL,则返回 NULL。 @@ -4016,9 +4016,9 @@ SHA2(string, hashLength) - | Returns the hash using the SHA-2 family of hash functions (SHA-224, SHA-256, SHA-384, or SHA-512). The first argument _string_ is the string to be hashed and the second argument _hashLength_ is the bit length of the result (224, 256, 384, or 512). Returns NULL if _string_ or _hashLength_ is NULL. | + | 使用 SHA-2 哈希函数家族(SHA-224、SHA-256、SHA-384或SHA-512)返回哈希。第一个参数 _string_ 是要散列的字符串,第二个参数 _hashLength_ 是结果的位长(224、256、384或512)。如果 _string_ 或 _hashLength_ 为空,则返回 NULL。 | -| Hash functions | Description | +| Hash 函数 | 描述 | | --- | --- | | @@ -4030,7 +4030,7 @@ STRING.md5() -Returns the MD5 hash of _STRING_ as a string of 32 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 32 个十六进制数字的字符串返回 _STRING_ 的 MD5 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4040,7 +4040,7 @@ STRING.sha1() -Returns the SHA-1 hash of _STRING_ as a string of 40 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 40 个十六进制数字的字符串返回 _STRING_ 的 SHA-1 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4050,7 +4050,7 @@ STRING.sha224() -Returns the SHA-224 hash of _STRING_ as a string of 56 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 56 个十六进制数字的字符串返回 _STRING_ 的 SHA-224 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4060,7 +4060,7 @@ STRING.sha256() -Returns the SHA-256 hash of _STRING_ as a string of 64 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 64 个十六进制数字的字符串返回 _STRING_ 的 SHA-256 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4070,7 +4070,7 @@ STRING.sha384() -Returns the SHA-384 hash of _STRING_ as a string of 96 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 96 个十六进制数字的字符串返回 _STRING_ 的 SHA-384 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4080,7 +4080,7 @@ STRING.sha512() -Returns the SHA-512 hash of _STRING_ as a string of 128 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 128 个十六进制数字的字符串返回 _STRING_ 的 SHA-512 哈希值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4090,9 +4090,9 @@ STRING.sha2(INT) - | Returns the SHA-2 family (SHA-224, SHA-256, SHA-384, or SHA-512) hashed value specified by _INT_ (which could be 224, 256, 384, or 512) for _STRING_. Returns NULL if _STRING_ or _INT_ is NULL. | + | 返回 _INT_ (可以是224、256、384或512)为 _STRING_ 指定的 SHA-2 族(SHA-224、SHA-256、SHA-384或SHA-512)散列值。如果 _STRING_ 或 _INT_ 为 NULL,则返回 NULL。 | -| Hash functions | Description | +| Hash 函数 | 描述 | | --- | --- | | @@ -4104,7 +4104,7 @@ STRING.md5() -Returns the MD5 hash of _STRING_ as a string of 32 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 32 个十六进制数字的字符串返回 _STRING_ 的 MD5 散列值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4114,7 +4114,7 @@ STRING.sha1() -Returns the SHA-1 hash of _STRING_ as a string of 40 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 40 个十六进制数字的字符串返回 _STRING_ 的 SHA-1 散列值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4124,7 +4124,7 @@ STRING.sha224() -Returns the SHA-224 hash of _STRING_ as a string of 56 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 56 个十六进制数字的字符串返回 _STRING_ 的 SHA-224 散列值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4134,7 +4134,7 @@ STRING.sha256() -Returns the SHA-256 hash of _STRING_ as a string of 64 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 64 个十六进制数字的字符串返回 _STRING_ 的 SHA-256 散列值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4144,7 +4144,7 @@ STRING.sha384() -Returns the SHA-384 hash of _STRING_ as a string of 96 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 96 个十六进制数字的字符串返回 _STRING_ 的 SHA-384 散列值;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4154,7 +4154,7 @@ STRING.sha512() -Returns the SHA-512 hash of _STRING_ as a string of 128 hexadecimal digits; returns NULL if _STRING_ is NULL. +以 128 个十六进制数字的字符串返回 _STRING_ 的 SHA-512 散列;如果 _STRING_ 为 NULL,则返回 NULL。 @@ -4164,14 +4164,14 @@ STRING.sha2(INT) - | Returns the SHA-2 family (SHA-224, SHA-256, SHA-384, or SHA-512) hashed value specified by _INT_ (which could be 224, 256, 384, or 512) for _STRING_. Returns NULL if _STRING_ or _INT_ is NULL. | + | 返回 _INT_ (可以是224、256、384或512)为 _STRING_ 指定的 SHA-2族(SHA-224、SHA-256、SHA-384或SHA-512)散列值。如果 _STRING_ 或 _INT_ 为空,则返回 NULL。 | -### Auxiliary Functions +### 辅助函数(Auxiliary Functions) -| Auxiliary functions | Description | +| 辅助函数 | 描述 | | --- | --- | -| Auxiliary functions | Description | +| 辅助函数 | 描述 | | --- | --- | | @@ -4183,9 +4183,9 @@ ANY.as(NAME1, NAME2, ...) - | Specifies a name for _ANY_ (a field). Additional names can be specified if the expression expands to multiple fields. | + | 指定 _ANY_(字段)的名称。如果表达式扩展到多个字段,可以指定其他名称。 | -| Auxiliary functions | Description | +| 辅助函数 | 描述 | | --- | --- | | @@ -4197,13 +4197,13 @@ ANY.as(NAME1, NAME2, ...) - | Specifies a name for _ANY_ (a field). Additional names can be specified if the expression expands to multiple fields. | + | 指定 _ANY_ (字段)的名称。如果表达式扩展到多个字段,可以指定其他名称。 | -## Aggregate Functions +## 聚合函数(Aggregate Functions) -The aggregate functions take an expression across all the rows as the input and return a single aggregated value as the result. +聚合函数接受跨所有行的表达式作为输入,并返回单个聚合值作为结果。 -| Aggregate functions | Description | +| 聚合函数 | 描述 | | --- | --- | | @@ -4215,7 +4215,7 @@ COUNT([ ALL ] expression | DISTINCT expression1 [, expression2]*) -By default or with ALL, returns the number of input rows for which _expression_ is not NULL. Use DISTINCT for one unique instance of each value. +默认情况下或使用ALL,返回 _expression_ 不为NULL的输入行数。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4226,7 +4226,7 @@ COUNT(1) -Returns the number of input rows. +返回输入行数。 @@ -4236,7 +4236,7 @@ AVG([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the average (arithmetic mean) of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字ALL,返回所有输入行中 _expression_ 的平均值(算术平均值)。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4246,7 +4246,7 @@ SUM([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the sum of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的总和。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4256,7 +4256,7 @@ MAX([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the maximum value of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的最大值。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4266,7 +4266,7 @@ MIN([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the minimum value of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的最小值。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4276,7 +4276,7 @@ STDDEV_POP([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the population standard deviation of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的总体标准差。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4286,7 +4286,7 @@ STDDEV_SAMP([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the sample standard deviation of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的样本标准差。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4296,7 +4296,7 @@ VAR_POP([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the population variance (square of the population standard deviation) of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的总体方差(总体标准差的平方)。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4306,7 +4306,7 @@ VAR_SAMP([ ALL | DISTINCT ] expression) -By default or with keyword ALL, returns the sample variance (square of the sample standard deviation) of _expression_ across all input rows. Use DISTINCT for one unique instance of each value. +默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的样本方差(样本标准差的平方)。将 DISTINCT 用于每个值的一个唯一实例。 @@ -4316,9 +4316,9 @@ COLLECT([ ALL | DISTINCT ] expression) - | By default or with keyword ALL, returns a multiset of _expression_ across all input rows. NULL values will be ignored. Use DISTINCT for one unique instance of each value. | + | 默认情况下或使用关键字 ALL,在所有输入行中返回 _expression_ 的多个集合。NULL 值将被忽略。将 DISTINCT 用于每个值的一个唯一实例。 | -| Aggregate functions | Description | +| 聚合函数 | 描述 | | --- | --- | | @@ -4330,7 +4330,7 @@ FIELD.count -Returns the number of input rows for which _FIELD_ is not NULL. +返回 _FIELD_ 不为 NULL 的输入行数。 @@ -4340,7 +4340,7 @@ FIELD.avg -Returns the average (arithmetic mean) of _FIELD_ across all input rows. +返回所有输入行中 _FIELD_ 的平均值(算术平均值)。 @@ -4350,7 +4350,7 @@ FIELD.sum -Returns the sum of numeric field _FIELD_ across all input rows. If all values are NULL, returns NULL. +返回所有输入行中数字字段 _FIELD_ 的总和。如果所有值都为 NULL,则返回 NULL。 @@ -4360,7 +4360,7 @@ FIELD.sum0 -Returns the sum of numeric field _FIELD_ across all input rows. If all values are NULL, returns 0. +返回所有输入行中数字字段 _FIELD_ 的总和。如果所有值都为 NULL,则返回 0。 @@ -4370,7 +4370,7 @@ FIELD.max -Returns the maximum value of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的最大值。 @@ -4380,7 +4380,7 @@ FIELD.min -Returns the minimum value of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的最小值。 @@ -4390,7 +4390,7 @@ FIELD.stddevPop -Returns the population standard deviation of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的总体标准差。 @@ -4400,7 +4400,7 @@ FIELD.stddevSamp -Returns the sample standard deviation of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的样本标准差。 @@ -4410,7 +4410,7 @@ FIELD.varPop -Returns the population variance (square of the population standard deviation) of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的总体方差(总体标准差的平方)。 @@ -4420,7 +4420,7 @@ FIELD.varSamp -Returns the sample variance (square of the sample standard deviation) of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的样本方差(样本标准差的平方)。 @@ -4430,9 +4430,9 @@ FIELD.collect - | Returns a multiset of _FIELD_ across all input rows. | + | 在所有输入行中返回 _FIELD_ 的多重集(multiset)。 | -| Aggregate functions | Description | +| 聚合函数 | 描述 | | --- | --- | | @@ -4444,7 +4444,7 @@ FIELD.count -Returns the number of input rows for which _FIELD_ is not NULL. +返回 _FIELD_ 不为 NULL 的输入行数。 @@ -4454,7 +4454,7 @@ FIELD.avg -Returns the average (arithmetic mean) of _FIELD_ across all input rows. +返回所有输入行中 _FIELD_ 的平均值(算术平均值)。 @@ -4464,7 +4464,7 @@ FIELD.sum -Returns the sum of numeric field _FIELD_ across all input rows. If all values are NULL, returns NULL. +返回所有输入行中数字字段 _FIELD_ 的总和。如果所有值都为 NULL,则返回 NULL。 @@ -4474,7 +4474,7 @@ FIELD.sum0 -Returns the sum of numeric field _FIELD_ across all input rows. If all values are NULL, returns 0. +返回所有输入行中数字字段 _FIELD_ 的总和。如果所有值都为 NULL,则返回 0。 @@ -4484,7 +4484,7 @@ FIELD.max -Returns the maximum value of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的最大值。 @@ -4494,7 +4494,7 @@ FIELD.min -Returns the minimum value of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的最小值。 @@ -4504,7 +4504,7 @@ FIELD.stddevPop -Returns the population standard deviation of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的总体标准差。 @@ -4514,7 +4514,7 @@ FIELD.stddevSamp -Returns the sample standard deviation of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的样本标准差。 @@ -4524,7 +4524,7 @@ FIELD.varPop -Returns the population variance (square of the population standard deviation) of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的总体方差(总体标准差的平方)。 @@ -4534,7 +4534,7 @@ FIELD.varSamp -Returns the sample variance (square of the sample standard deviation) of numeric field _FIELD_ across all input rows. +返回所有输入行中数字字段 _FIELD_ 的样本方差(样本标准差的平方)。 @@ -4544,13 +4544,13 @@ FIELD.collect - | Returns a multiset of _FIELD_ across all input rows. | + | 在所有输入行中返回 _FIELD_ 的多重集(multiset)。 | -## Date Format Specifiers +## 日期格式说明符(Date Format Specifiers) -The following table lists specifiers for date format functions. +下表列出了日期格式函数的说明符。 -| Specifier | Description | +| 说明符 | 描述 | | --- | --- | | @@ -4562,7 +4562,7 @@ The following table lists specifiers for date format functions. -Abbreviated weekday name (`Sun` .. `Sat`) +缩写的工作日名称 (`Sun` .. `Sat`) @@ -4572,7 +4572,7 @@ Abbreviated weekday name (`Sun` .. `Sat`) -Abbreviated month name (`Jan` .. `Dec`) +缩写的月份名称(`Jan` .. `Dec`) @@ -4582,7 +4582,7 @@ Abbreviated month name (`Jan` .. `Dec`) -Month, numeric (`1` .. `12`) +月,数字(`1` .. `12`) @@ -4592,7 +4592,7 @@ Month, numeric (`1` .. `12`) -Day of the month with English suffix (`0th`, `1st`, `2nd`, `3rd`, ...) +带有英文后缀的月份的某天 (`0th`, `1st`, `2nd`, `3rd`, ...) @@ -4602,7 +4602,7 @@ Day of the month with English suffix (`0th`, `1st`, `2nd`, `3rd`, ...) -Day of the month, numeric (`01` .. `31`) +每月的某天,数字 (`01` .. `31`) @@ -4612,7 +4612,7 @@ Day of the month, numeric (`01` .. `31`) -Day of the month, numeric (`1` .. `31`) +每月的某天,数字(`1` .. `31`) @@ -4622,7 +4622,7 @@ Day of the month, numeric (`1` .. `31`) -Fraction of second (6 digits for printing: `000000` .. `999000`; 1 - 9 digits for parsing: `0` .. `999999999`) (Timestamp is truncated to milliseconds.) +秒的分数(打印6位数字:`000000` .. `999000`;1 - 9位数用于解析:`0` .. `999999999`)(时间戳被截断为毫秒。) @@ -4632,7 +4632,7 @@ Fraction of second (6 digits for printing: `000000` .. `999000`; 1 - 9 digits fo -Hour (`00` .. `23`) +小时 (`00` .. `23`) @@ -4642,7 +4642,7 @@ Hour (`00` .. `23`) -Hour (`01` .. `12`) +小时 (`01` .. `12`) @@ -4652,7 +4652,7 @@ Hour (`01` .. `12`) -Hour (`01` .. `12`) +小时 (`01` .. `12`) @@ -4662,7 +4662,7 @@ Hour (`01` .. `12`) -Minutes, numeric (`00` .. `59`) +分钟,数字(`00` .. `59`) @@ -4672,7 +4672,7 @@ Minutes, numeric (`00` .. `59`) -Day of year (`001` .. `366`) +一年中的一天(`001` .. `366`) @@ -4682,7 +4682,7 @@ Day of year (`001` .. `366`) -Hour (`0` .. `23`) +小时 (`0` .. `23`) @@ -4692,7 +4692,7 @@ Hour (`0` .. `23`) -Hour (`1` .. `12`) +小时 (`1` .. `12`) @@ -4702,7 +4702,7 @@ Hour (`1` .. `12`) -Month name (`January` .. `December`) +月份名称 (`January` .. `December`) @@ -4712,7 +4712,7 @@ Month name (`January` .. `December`) -Month, numeric (`01` .. `12`) +月,数字 (`01` .. `12`) @@ -4722,7 +4722,7 @@ Month, numeric (`01` .. `12`) -`AM` or `PM` +`AM` 或 `PM` @@ -4732,7 +4732,7 @@ Month, numeric (`01` .. `12`) -Time, 12-hour (`hh:mm:ss` followed by `AM` or `PM`) +时间,12小时 (`hh:mm:ss` 后跟 `AM` or `PM`) @@ -4742,7 +4742,7 @@ Time, 12-hour (`hh:mm:ss` followed by `AM` or `PM`) -Seconds (`00` .. `59`) +秒 (`00` .. `59`) @@ -4752,7 +4752,7 @@ Seconds (`00` .. `59`) -Seconds (`00` .. `59`) +秒 (`00` .. `59`) @@ -4762,7 +4762,7 @@ Seconds (`00` .. `59`) -Time, 24-hour (`hh:mm:ss`) +时间,24小时 (`hh:mm:ss`) @@ -4772,7 +4772,7 @@ Time, 24-hour (`hh:mm:ss`) -Week (`00` .. `53`), where Sunday is the first day of the week +周 (`00` .. `53`),星期日是一周的第一天 @@ -4782,7 +4782,7 @@ Week (`00` .. `53`), where Sunday is the first day of the week -Week (`00` .. `53`), where Monday is the first day of the week +周(`00` .. `53`),星期一是一周的第一天 @@ -4792,7 +4792,7 @@ Week (`00` .. `53`), where Monday is the first day of the week -Week (`01` .. `53`), where Sunday is the first day of the week; used with `%X` +周(`01` .. `53`),星期日是一周的第一天; 与 `%X` 一起使用 @@ -4802,7 +4802,7 @@ Week (`01` .. `53`), where Sunday is the first day of the week; used with `%X` -Week (`01` .. `53`), where Monday is the first day of the week; used with `%x` +周(`01` .. `53`),星期一是一周的第一天; 与 `%x` 一起使用 @@ -4812,7 +4812,7 @@ Week (`01` .. `53`), where Monday is the first day of the week; used with `%x` -Weekday name (`Sunday` .. `Saturday`) +工作日名称 (`Sunday` .. `Saturday`) @@ -4822,7 +4822,7 @@ Weekday name (`Sunday` .. `Saturday`) -Day of the week (`0` .. `6`), where Sunday is the first day of the week +星期几(`0` .. `6`),星期日是一周的第一天 @@ -4832,7 +4832,7 @@ Day of the week (`0` .. `6`), where Sunday is the first day of the week -Year for the week where Sunday is the first day of the week, numeric, four digits; used with `%V` +一周的年份,星期一是一周的第一天,数字,四位数; 与 `%V` 一起使用 @@ -4842,7 +4842,7 @@ Year for the week where Sunday is the first day of the week, numeric, four digit -Year for the week, where Monday is the first day of the week, numeric, four digits; used with `%v` +一周的年份,星期一是一周的第一天,数字,四位数; 与 `%v` 一起使用 @@ -4852,7 +4852,7 @@ Year for the week, where Monday is the first day of the week, numeric, four digi -Year, numeric, four digits +年份,数字,四位数 @@ -4862,7 +4862,7 @@ Year, numeric, four digits -Year, numeric (two digits) +年份,数字(两位数) @@ -4872,7 +4872,7 @@ Year, numeric (two digits) -A literal `%` character +文字 `%` 字符 @@ -4882,13 +4882,13 @@ A literal `%` character - | `x`, for any `x` not listed above | + | `x`,对于上面没有列出的任何 `x` | -## Time Interval and Point Unit Specifiers +## 时间间隔和点单位说明符(Time Interval and Point Unit Specifiers) -The following table lists specifiers for time interval and time point units. +下表列出了时间间隔和时间点单位的说明符。 -For Table API, please use `_` for spaces (e.g., `DAY_TO_HOUR`). +对于 Table API,请使用 `_` 作为空格(例如,`DAY_TO_HOUR`)。 | Time Interval Unit | Time Point Unit | | --- | --- |