首页 > 数据库 > MySQL > 正文

小结:MYSQL数据库常用字符处理函数

2024-07-24 12:56:59
字体:
来源:转载
供稿:网友

ascii(str)
返回字符串str的最左面字符的ascii代码值。如果str是空字符串,返回0。如果str是null,返回null。
mysql> select ascii('2');
        -> 50
mysql> select ascii(2);
        -> 50
mysql> select ascii('dx');
        -> 100
也可参见ord()函数。

ord(str)
如果字符串str最左面字符是一个多字节字符,通过以格式((first byte ascii code)*256+(second byte ascii code))[*256+third byte ascii code...]返回字符的ascii代码值来返回多字节字符代码。如果最左面的字符不是一个多字节字符。返回与ascii()函数返回的相同值。
mysql> select ord('2');
        -> 50
 
conv(n,from_base,to_base)
在不同的数字基之间变换数字。返回数字n的字符串数字,从from_base基变换为to_base基,如果任何参数是null,返回null。参数n解释为一个整数,但是可以指定为一个整数或一个字符串。最小基是2且最大的基是36。如果to_base是一个负数,n被认为是一个有符号数,否则,n被当作无符号数。 conv以64位点精度工作。
mysql> select conv("a",16,2);
        -> '1010'
mysql> select conv("6e",18,8);
        -> '172'
mysql> select conv(-17,10,-18);
        -> '-h'
mysql> select conv(10+"10"+'10'+0xa,10,10);
        -> '40'
 
bin(n)
返回二进制值n的一个字符串表示,在此n是一个长整数(bigint)数字,这等价于conv(n,10,2)。如果n是null,返回null。
mysql> select bin(12);
        -> '1100'

oct(n)
返回八进制值n的一个字符串的表示,在此n是一个长整型数字,这等价于conv(n,10,8)。如果n是null,返回null。
mysql> select oct(12);
        -> '14'
 
hex(n)
返回十六进制值n一个字符串的表示,在此n是一个长整型(bigint)数字,这等价于conv(n,10,16)。如果n是null,返回null。
mysql> select hex(255);
        -> 'ff'
 
char(n,...)
char()将参数解释为整数并且返回由这些整数的ascii代码字符组成的一个字符串。null值被跳过。
mysql> select char(77,121,83,81,'76');
        -> 'mysql'
mysql> select char(77,77.3,'77.3');
        -> 'mmm'
 
concat(str1,str2,...)
返回来自于参数连结的字符串。如果任何参数是null,返回null。可以有超过2个的参数。一个数字参数被变换为等价的字符串形式。
mysql> select concat('my', 's', 'ql');
        -> 'mysql'
mysql> select concat('my', null, 'ql');
        -> null
mysql> select concat(14.3);
        -> '14.3'

length(str)
 
octet_length(str)
 
char_length(str)
 
character_length(str)
返回字符串str的长度。
mysql> select length('text');
        -> 4
mysql> select octet_length('text');
        -> 4

注意,对于多字节字符,其char_length()仅计算一次。

locate(substr,str)
 
position(substr in str)
返回子串substr在字符串str第一个出现的位置,如果substr不是在str里面,返回0.
mysql> select locate('bar', 'foobarbar');
        -> 4
mysql> select locate('xbar', 'foobar');
        -> 0

该函数是多字节可靠的。 
locate(substr,str,pos)
返回子串substr在字符串str第一个出现的位置,从位置pos开始。如果substr不是在str里面,返回0。
mysql> select locate('bar', 'foobarbar',5);
        -> 7

这函数是多字节可靠的。

instr(str,substr)
返回子串substr在字符串str中的第一个出现的位置。这与有2个参数形式的locate()相同,除了参数被颠倒。
mysql> select instr('foobarbar', 'bar');
        -> 4
mysql> select instr('xbar', 'foobar');
        -> 0

这函数是多字节可靠的。

lpad(str,len,padstr)
返回字符串str,左面用字符串padstr填补直到str是len个字符长。
mysql> select lpad('hi',4,'??');
        -> '??hi'
 
rpad(str,len,padstr)
返回字符串str,右面用字符串padstr填补直到str是len个字符长。  
mysql> select rpad('hi',5,'?');
        -> 'hi???'

left(str,len)
返回字符串str的最左面len个字符。
mysql> select left('foobarbar', 5);
        -> 'fooba'

该函数是多字节可靠的。

right(str,len)
返回字符串str的最右面len个字符。
mysql> select right('foobarbar', 4);
        -> 'rbar'

该函数是多字节可靠的。

substring(str,pos,len)
 
substring(str from pos for len)
 
mid(str,pos,len)
从字符串str返回一个len个字符的子串,从位置pos开始。使用from的变种形式是ansi sql92语法。
mysql> select substring('quadratically',5,6);
        -> 'ratica'

该函数是多字节可靠的。

substring(str,pos)
 
substring(str from pos)
从字符串str的起始位置pos返回一个子串。
mysql> select substring('quadratically',5);
        -> 'ratically'
mysql> select substring('foobarbar' from 4);
        -> 'barbar'

该函数是多字节可靠的。

substring_index(str,delim,count)
返回从字符串str的第count个出现的分隔符delim之后的子串。如果count是正数,返回最后的分隔符到左边(从左边数) 的所有字符。如果count是负数,返回最后的分隔符到右边的所有字符(从右边数)。
mysql> select substring_index('www.VeVb.com', '.', 2);
        -> 'www.VeVb'
mysql> select substring_index('www.VeVb.com', '.', -2);
        -> 'VeVb.com'

该函数对多字节是可靠的。

ltrim(str)
返回删除了其前置空格字符的字符串str。
mysql> select ltrim('  barbar');
        -> 'barbar'

rtrim(str)
返回删除了其拖后空格字符的字符串str。
mysql> select rtrim('barbar   ');
        -> 'barbar'

该函数对多字节是可靠的。 
trim([[both | leading | trailing] [remstr] from] str)
返回字符串str,其所有remstr前缀或后缀被删除了。如果没有修饰符both、leading或trailing给出,both被假定。如果remstr没被指定,空格被删除。
mysql> select trim('  bar   ');
        -> 'bar'
mysql> select trim(leading 'x' from 'xxxbarxxx');
        -> 'barxxx'
mysql> select trim(both 'x' from 'xxxbarxxx');
        -> 'bar'
mysql> select trim(trailing 'xyz' from 'barxxyz');
        -> 'barx'

该函数对多字节是可靠的。

soundex(str)
返回str的一个同音字符串。听起来“大致相同”的2个字符串应该有相同的同音字符串。一个“标准”的同音字符串长是4个字符,但是soundex()函数返回一个任意长的字符串。你可以在结果上使用substring()得到一个“标准”的 同音串。所有非数字字母字符在给定的字符串中被忽略。所有在a-z之外的字符国际字母被当作元音。
mysql> select soundex('hello');
        -> 'h400'
mysql> select soundex('quadratically');
        -> 'q36324'
 
space(n)
返回由n个空格字符组成的一个字符串。
mysql> select space(6);
        -> '      '
 
replace(str,from_str,to_str)
返回字符串str,其字符串from_str的所有出现由字符串to_str代替。
mysql> select replace('www.VeVb.com', 'w', 'ww');
        -> 'wwwwww.VeVb.com'

该函数对多字节是可靠的。

repeat(str,count)
返回由重复counttimes次的字符串str组成的一个字符串。如果count <= 0,返回一个空字符串。如果str或count是null,返回null。
mysql> select repeat('mysql', 3);
        -> 'mysqlmysqlmysql'
 
reverse(str)
返回颠倒字符顺序的字符串str。
mysql> select reverse('abc');
        -> 'cba'

该函数对多字节可靠的。

insert(str,pos,len,newstr)
返回字符串str,在位置pos起始的子串且len个字符长得子串由字符串newstr代替。
mysql> select insert('quadratic', 3, 4, 'what');
        -> 'quwhattic'

该函数对多字节是可靠的。

elt(n,str1,str2,str3,...)
如果n= 1,返回str1,如果n= 2,返回str2,等等。如果n小于1或大于参数个数,返回null。elt()是field()反运算。
mysql> select elt(1, 'ej', 'heja', 'hej', 'foo');
        -> 'ej'
mysql> select elt(4, 'ej', 'heja', 'hej', 'foo');
        -> 'foo'

field(str,str1,str2,str3,...)
返回str在str1, str2, str3, ...清单的索引。如果str没找到,返回0。field()是elt()反运算。
mysql> select field('ej', 'hej', 'ej', 'heja', 'hej', 'foo');
        -> 2
mysql> select field('fo', 'hej', 'ej', 'heja', 'hej', 'foo');
        -> 0

find_in_set(str,strlist)
如果字符串str在由n子串组成的表strlist之中,返回一个1到n的值。一个字符串表是被“,”分隔的子串组成的一个字符串。如果第一个参数是一个常数字符串并且第二个参数是一种类型为set的列,find_in_set()函数被优化而使用位运算!如果str不是在strlist里面或如果strlist是空字符串,返回0。如果任何一个参数是null,返回null。如果第一个参数包含一个“,”,该函数将工作不正常。
mysql> select find_in_set('b','a,b,c,d');
        -> 2
 
make_set(bits,str1,str2,...)
返回一个集合 (包含由“,”字符分隔的子串组成的一个字符串),由相应的位在bits集合中的的字符串组成。str1对应于位0,str2对应位1,等等。在str1, str2, ...中的null串不添加到结果中。
mysql> select make_set(1,'a','b','c');
        -> 'a'
mysql> select make_set(1 | 4,'hello','nice','world');
        -> 'hello,world'
mysql> select make_set(0,'a','b','c');
        -> ''

export_set(bits,on,off,[separator,[number_of_bits]])
返回一个字符串,在这里对于在“bits”中设定每一位,你得到一个“on”字符串,并且对于每个复位(reset)的位,你得到一个“off”字符串。每个字符串用“separator”分隔(缺省“,”),并且只有“bits”的“number_of_bits” (缺省64)位被使用。
mysql> select export_set(5,'y','n',',',4)
        -> y,n,y,n

lcase(str)
 
lower(str)
返回字符串str,根据当前字符集映射(缺省是iso-8859-1 latin1)把所有的字符改变成小写。该函数对多字节是可靠的。
mysql> select lcase('quadratically');
        -> 'quadratically'
 
ucase(str)
 
upper(str)
返回字符串str,根据当前字符集映射(缺省是iso-8859-1 latin1)把所有的字符改变成大写。该函数对多字节是可靠的。
mysql> select ucase('hej');
        -> 'hej'

该函数对多字节是可靠的。

load_file(file_name)
读入文件并且作为一个字符串返回文件内容。文件必须在服务器上,你必须指定到文件的完整路径名,而且你必须有file权限。文件必须所有内容都是可读的并且小于max_allowed_packet。如果文件不存在或由于上面原因之一不能被读出,函数返回null。
mysql> update table_name
           set blob_column=load_file("/tmp/picture")
           where id=1;


mysql必要时自动变换数字为字符串,并且反过来也如此:

mysql> select 1+"1";
        -> 2
mysql> select concat(2,' test');
        -> '2 test'

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表