mysql char_length和length
沒想到mysql這個竟然是否分開的。length是按照位元組算。char_length才是按字元算的。我記得一起pg似乎只有一個length。不過也好,我現在就關心length。
- LENGTH(str)
返回值為字串str 的長度,單位為位元組。一個多位元組字元算作多位元組。這意味著 對於一個包含5個2位元組字元的字串, LENGTH() 的返回值為 10, 而 CHAR_LENGTH()的返回值則為5。
mysql> SELECT LENGTH('text');
-> 4
- CHAR_LENGTH(str)
返回值為字串str 的長度,長度的單位為字元。一個多位元組字元算作一個單字元。對於一個包含五個二位元組字符集, LENGTH()返回值為 10, 而CHAR_LENGTH()的返回值為5。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/82392/viewspace-344595/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL History List LengthMySql
- java中size()和length區別Java
- Java中 length、length()、size()區別Java
- CSSStyleDeclaration.lengthCSS
- sessionStorage.lengthSession
- DataTransferItemList.length
- history.length
- inverse of arc length
- CSSStyleDeclaration length 屬性CSS
- FileList length 屬性
- Java String length()例子Java
- ValueError: Length of values (141) does not match length of index (4278)問題的解決ErrorIndex
- JavaScript select length 屬性JavaScript
- JavaScript 字串 length屬性JavaScript字串
- string.length() & strlen(char *)
- [leetcode]length-of-last-wordLeetCodeAST
- MySQL常用的字元函式:length,cancat,substr(substring),instr,trim,upper,lower,lpad,rpad,replaceMySql字元函式
- 聊聊 MySQL 網路緩衝區、net_buffer_length、max_allowed_packet 那些事MySql
- JavaScript 函式 length 屬性JavaScript函式
- JavaScript 陣列 length 屬性JavaScript陣列
- 從Function.length 與 Argument.length 區別談到如何傳遞任意個數引數Function
- 前端報錯:cannot read property length of undefined前端Undefined
- 紅寶書總結-this,length,apply,callAPP
- [LeetCode] 2414. Length of the Longest Alphabetical Continuous SubstringLeetCodeAlphabet
- [LeetCode] 3090. Maximum Length Substring With Two OccurrencesLeetCode
- gcd思維_cfECR107_B. GCD LengthGC
- Specified key was too long; max key length is 1000 bytes
- 美創科技運維日記|Oracle欄位長度引起的思考length()和lengthb()運維Oracle
- 安裝mysql和mysql workbenchMySql
- OGG-01163 Bad column length (32) specified for column in table
- [LeetCode] 1750. Minimum Length of String After Deleting Similar EndsLeetCodeMILA
- 關於 JS 陣列,物件 length 使用的坑JS陣列物件
- postgresql中常用的函式:length、concat、as、substring、randomSQL函式random
- WPF TextBox not allowed illegal characters to be input and limit the text length in mvvmMITMVVM
- 【MySQL】MySQL備份和恢復MySql
- 記一次Content-Length引發的血案
- oracle 匯入報錯:field in data file exceeds maximum lengthOracle
- laravel出現The cipher and / or key length are invalid 的Bug除錯Laravel除錯