为了账号安全,请及时绑定邮箱和手机立即绑定

MySQL 字符串长度(中文字符串长度)

标签:
MySQL

Summary: in this tutorial, you will learn about MySQL string length functions that allow you to get the length of strings measured in bytes and in characters.

MySQL supports various character sets such as latin1utf8, etc. You use the SHOW CHARACTER SET statement to get all character sets supported by MySQL database server.

SHOW CHARACTER SET;

mysql character sets

The Maxlen column stores the number of bytes for character sets. In MySQL, a string can be in any character set. If a string contains 1-byte characters, its length measured in characters and its length measured in bytes are equal. However, if a string contains multi-byte characters, its length in bytes is typically greater than its length in characters.

To get the length of a string measured in bytes, you use the LENGTH function as follows:

LENGTH(str);

You use the CHAR_LENGTH function to get the length of a string measured in characters as follows:

CHAR_LENGTH(str);

 

Examples of LENGTH and CHAR_LENGTH functions

Let’s take a look at the following statements:

SET @s = CONVERT('MySQL String Length' USING ucs2); SELECT CHAR_LENGTH(@s), LENGTH(@s);

MySQL String Length - LENGTH and CHAR_LENGTH

How it works.

  • First, we convert the MySQL String Length string into ucs2 character set, which is UCS-2 Unicode that holds 2-byte characters.

  • Second, we use the CHAR_LENGTH and LENGTH functions to get the length of the @s string in bytes and in characters. Because the @s string contains 2-byte characters, its length in character is 19, while its length in bytes is 38.

The following statements demonstrate how the LENGTH and CHAR_LENGTH functions that work with 1-byte characters:

SET @s = CONVERT('MySQL string length' USING latin1); SELECT LENGTH(@s), CHAR_LENGTH(@s);

MySQL String Length - 1-byte characters

We use latin1 character set for the @s string. The latin1 character set contains 1-byte characters; therefore, its length in bytes and its length in character are equal.

Notice that some character sets hold characters whose number of bytes can be varies e.g., for the utf8 character set:

SET @s = CONVERT('MySQL String Length' USING utf8); SELECT CHAR_LENGTH(@s), LENGTH(@s);

MySQL String Length - multi-byte characters

The CHAR_LENGTH and LENGTH returns the same result. However, if a string has special characters, the result is different. See the following example:

SET @s = CONVERT('á' USING utf8); SELECT CHAR_LENGTH(@s), LENGTH(@s);

MySQL String Length - 2-byte characters

An application of MySQL string length functions

Suppose we have a posts table that stores blog posts with four columns postidtitleexcerpt and content. (We make the posts table as simple as possible for the demonstration purpose).

First, we create the posts table by using the CREATE TABLE statement:

CREATE TABLE posts(   postid int auto_increment primary key,   title varchar(255) NOT NULL,   excerpt varchar(255) NOT NULL,   content text,   pubdate datetime )Engine=InnoDB;

Second, we insert some blog posts into the posts table by using the INSERT statement:

INSERT INTO posts(title,excerpt,content) VALUES('MySQL Length','MySQL string length function tutorial','dummy'),       ('Second blog post','Second blog post','dummy');

We can use the CHAR_LENGTH function to check if the except has more than 20 characters, we append an ellipsis (…) to the excerpt as the following query:

SELECT postid,        title,        IF(CHAR_LENGTH(excerpt) > 20,           CONCAT(LEFT(excerpt,20), '...'),           excerpt) summary FROM posts;

MySQL String Length Application

In the SELECT statement, we use the IF function to check if the length of the excerpt column is greater than 20, we concatenate the excerpt with the ellipsis (…) by using the CONCAT statement, otherwise we just get the excerpt.

In this tutorial, we have shown you how use MySQL string length functions to get the length of a string in bytes and in characters.

Reference

  • http://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_length - MySQL LENGTH function

  • http://dev.mysql.com/doc/refman/5.7/en/string-functions.html#function_char-length - MySQL CHAR_LENGTH function

原文链接:http://outofmemory.cn/mysql/function/mysql-string-length

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

举报

0/150
提交
取消