Home > Database > Mysql Tutorial > body text

What is the difference between the MySQL LENGTH() and CHAR_LENGTH() functions?

WBOY
Release: 2023-09-02 16:57:07
forward
1109 people have browsed it

MySQL LENGTH() 和 CHAR_LENGTH() 函数有什么区别?

Both these functions are string functions and return the number of characters present in the string. But they differ in that the CHAR_LENGTH() function measures the string length in "characters" while the LENGTH() function measures the string length in "bytes". In other words, we can say that the CHAR_LENGTH() function is multibyte safe, i.e. it ignores whether a character is single byte or multibyte. For example, if a string contains four 2-byte characters, LENGTH().

This function will return 8, while the CHAR_LENGTH() function will return 4. In this sense, we can say that CHAR_LENGTH() gives more precise results than the LENGTH() function.

This difference is particularly relevant to Unicode, where most characters are encoded in two bytes, or to UTF-8, where the number of bytes varies. The following example demonstrates -

Example

In the following example, first, the string 'Gaurav' is converted to ucs2 strong> i.e. Unicode, saving 2 bytes Character, character set. We can then observe the difference in the result set, i.e. LENGTH() returns the length in bytes, while CHAR_LENGTH() returns the length in characters.

mysql> SET @A = CONVERT('Gaurav' USING ucs2);
Query OK, 0 rows affected (0.15 sec)

mysql> Select Char_length(@A), LENGTH(@A);

+-----------------+------------+
| Char_length(@A) | LENGTH(@A) |
+-----------------+------------+
| 6               | 12         |
+-----------------+------------+

1 row in set (0.03 sec)
Copy after login

Now, in the example below, we are using special characters in UTF-8, the number of bytes in the character set is different. We can then observe the differences from the result set.

mysql> SET @B = CONVERT('©' USING utf8);
Query OK, 0 rows affected (0.15 sec)

mysql> Select CHAR_LENGTH(@B);

+-----------------------+
| CHAR_LENGTH(@B)       |
+-----------------------+
| 1                     |
+-----------------------+

1 row in set (0.00 sec)

mysql> Select LENGTH(@B);

+---------------+
| LENGTH(@B)    |
+---------------+
| 2             |
+---------------+

1 row in set (0.00 sec)
Copy after login

The above is the detailed content of What is the difference between the MySQL LENGTH() and CHAR_LENGTH() functions?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!