mysql的char占几个字节_mysqlvarchar和char类型在不同字符集下的字符...

mysql的char占⼏个字节_mysqlvarchar和char类型在不同字符
集下的字符。。。
场景⼀:CHAR(30)的最⼤字符数和最⼤字节数计算
1.CHAR(30)在UTF-8字符集下计算最⼤字符数和最⼤字节数
(product)root@localhost [test]> show create table t1\G
*************************** 1. row ***************************
Table: t1
Create Table: CREATE TABLE `t1` (
`c1` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row in set (0.00 sec)
(product)root@localhost [test]> insert into t1 values(repeat('王',30));
Query OK, 1 row affected (0.00 sec)
(product)root@localhost [test]> select * from t1;
+--------------------------------------------------------------------------------------------+
| c1                                                                                        |
+--------------------------------------------------------------------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa                                                            |
| 王王王王王王王王王王王王王王王王王王王王王王王王王王王王王王                              |
+--------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)
(product)root@localhost [test]> select char_length(c1) , length(c1) from t1;
+-----------------+------------+
| char_length(c1) | length(c1) |
+-----------------+------------+
|              30 |        30 |
|              30 |        90 |
+-----------------+------------+
2 rows in set (0.00 sec)
上⾯计算可看到CHAR(30)在UTF-8字符集下计算最⼤字符数和最⼤字节数分别是30和90(放⼊汉字时),⽽存⼊字母时分别为30和30。
2.CHAR(30)在GBK字符集下计算最⼤字符数和最⼤字节数
CREATE TABLE `t2` (
`c1` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
insert into t2 values(repeat('a',30));
insert into t2 values(repeat('王',30));
(product)root@localhost [test]> select * from t2;
+--------------------------------------------------------------------------------------------+
| c1                                                                                        |
+--------------------------------------------------------------------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa                                                            |
| 王王王王王王王王王王王王王王王王王王王王王王王王王王王王王王                              |
+--------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)
product)root@localhost [test]> select char_length(c1) , length(c1) from t2;
+-----------------+------------+
| char_length(c1) | length(c1) |
+-----------------+------------+
|              30 |        30 |
|              30 |        60 |
+-----------------+------------+
上⾯计算可看到CHAR(30)在UTF-8字符集下计算最⼤字符数和最⼤字节数分别是30和60(放⼊汉字时),⽽存⼊字母时分别为30和30。
3.CHAR(30)在latin1字符集下计算最⼤字符数和最⼤字节数
CREATE TABLE `t3` (
`c1` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
insert into t3 values(repeat('a',30));
(product)root@localhost [test]> select * from t3;
+--------------------------------+
| c1                            |
+--------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
+--------------------------------+
1 row in set (0.00 sec)
(product)root@localhost [test]> select char_length(c1) , length(c1) from t3;
+-----------------+------------+
| char_length(c1) | length(c1) |
+-----------------+------------+
|              30 |        30 |
+-----------------+------------+
1 row in set (0.00 sec)
上⾯计算可看到CHAR(30)在latin1字符集下计算最⼤字符数和最⼤字节数分别是30和30 4.CHAR(30)在latin1字符集下能存⼊UTF8编码的多少汉字,长度是多少
(product)root@localhost [test]> set names latin1;
Query OK, 0 rows affected (0.00 sec)
(product)root@localhost [test]>\s
Server characterset:    utf8
Db    characterset:    utf8
Client characterset:    latin1
Conn.  characterset:    latin1
(product)root@localhost [test]> insert into t3 values(repeat('王',10));
Query OK, 1 row affected (0.00 sec)
(product)root@localhost [test]>  select * from t3;;
+--------------------------------+
| c1                            |
+--------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
| 王王王王王王王王王王          |
+--------------------------------+
2 rows in set (0.00 sec)
product)root@localhost [test]> select char_length(c1) , length(c1) from t3;
+-----------------+------------+
| char_length(c1) | length(c1) |
+-----------------+------------+
|              30 |        30 |
|              30 |        30 |
+-----------------+------------+
2 rows in set (0.00 sec)
(product)root@localhost [test]> insert into t3 values(repeat('王',11));
ERROR 1406 (22001): Data too long for column 'c1' at row 1
上⾯计算可看到CHAR(30)在latin1字符集下能存⼊UTF8编码的10个汉字,长度是30
5.CHAR(30)在latin1字符集下能存⼊gbk编码的多少汉字,长度是多少
先在myf⽂件中更改数据字符集:
character-set-server = gbk
(product)root@localhost [test]>\s
Server characterset:    gbk
Db    characterset:    gbk
Client characterset:    utf8
Conn.  characterset:    utf8
(product)root@localhost [test]> set names latin1;
Query OK, 0 rows affected (0.00 sec)
(product)root@localhost [test]>\s
Server characterset:    gbk
Db    characterset:    gbk
Client characterset:    latin1
Conn.  characterset:    latin1
CREATE TABLE `t4` (
`c1` char(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
insert into t4 values(repeat('a',30));
insert into t4 values(repeat('王',11));
(product)root@localhost [test]> insert into t4 values(repeat('王',15));
ERROR 1406 (22001): Data too long for column 'c1' at row 1
(product)root@localhost [test]> insert into t4 values(repeat('王',11));
ERROR 1406 (22001): Data too long for column 'c1' at row 1
(product)root@localhost [test]> insert into t4 values(repeat('王',10));
ERROR 1406 (22001): Data too long for column 'c1' at row 1
理认上插⼊15是可以的,但最多只能插⼊10,好怪。这⾥留个问号,以后⽤python来测试。.
场景⼆:VARCHAR(30)的最⼤字符数和最⼤字节数计算
1.VARCHAR(30)在utf8字符集下计算最⼤字符数和最⼤字节数
CREATE TABLE `t5` (
`c1` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into t5 values(repeat('a',30));
insert into t5 values(repeat('王',30));
(product)root@localhost [test]> select * from t5;
+--------------------------------------------------------------------------------------------+
| c1                                                                                        |
+--------------------------------------------------------------------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa                                                            |
| 王王王王王王王王王王王王王王王王王王王王王王王王王王王王王王                              |
+--------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)
(product)root@localhost [test]> select char_length(c1) , length(c1) from t5;
+-----------------+------------+
| char_length(c1) | length(c1) |
+-----------------+------------+aaaaaaaaaaaaaaaaaa
|              30 |        30 |
|              30 |        90 |
+-----------------+------------+
2 rows in set (0.00 sec)
上⾯计算可看到VARCHAR(30)在UTF-8字符集下计算字节数与CHAR(30)有点不同,varchar实际所占长度计算规则为:长度在1到255间,实际所占字节数加1,长度在255到65535间,
实际所占字节数需要加2。则最⼤字符数和最⼤字节数分别是30和91(放⼊汉字时),⽽存⼊字母时分别为30和31。
2.VARCHAR(30)在gbk字符集下计算最⼤字符数和最⼤字节数
CREATE TABLE `t6` (
`c1` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
insert into t6 values(repeat('a',30));
insert into t6 values(repeat('王',30));
(product)root@localhost [test]> select * from t6;
+--------------------------------------------------------------------------------------------+
| c1                                                                                        |
+--------------------------------------------------------------------------------------------+
| aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa                                                            |
| 王王王王王王王王王王王王王王王王王王王王王王王王王王王王王王                              |
+--------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

本文发布于:2024-09-21 21:56:04,感谢您对本站的认可!

本文链接:https://www.17tex.com/tex/1/361043.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:计算   字符集   字符   字节数   实际   下能   长度   看到
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2024 Comsenz Inc.Powered by © 易纺专利技术学习网 豫ICP备2022007602号 豫公网安备41160202000603 站长QQ:729038198 关于我们 投诉建议