Skip to content

Commit

Permalink
data-type-string.md: correct the description of char type (pingcap#8329)
Browse files Browse the repository at this point in the history
  • Loading branch information
tangenta authored Feb 11, 2022
1 parent 20f4bd8 commit f6d1e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-type-string.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TiDB 支持 MySQL 所有的字符串类型,包括 `CHAR`、`VARCHAR`、`BINARY

### `CHAR` 类型

定长字符串。`CHAR` 列的长度固定为创建表时声明的长度。当保存 CHAR 值时,不足固定长度的字符串在后面填充空格,以达到指定的长度。M 表示列长度(字符的个数,不是字节的个数)。长度可以为从 0 到 255 的任何值。
定长字符串。`CHAR` 列的长度固定为创建表时声明的长度。M 表示列长度(字符的个数,不是字节的个数)。长度可以为从 0 到 255 的任何值。和 `VARCHAR` 类型不同,`CHAR` 列在写入时会对数据末尾的空格进行截断

{{< copyable "sql" >}}

Expand Down

0 comments on commit f6d1e4c

Please sign in to comment.