Mysql常用函数

~~lpad(),rpad():  字符长度填充:

lpad(str,len,padstr)

select LPAD('abcdefgh',15,'#');---> #######abcdefgh

-------------------------------------------

~~ltrim(),rtrim(): 左右去空

select rtrim('123456                                '); --->123456

-------------------------------------------

~~left(),right();从左右按长度截取

select left('1234567890', 3) -- 123

-------------------------------------------

~~concat(): 字符串连接

-------------------------------------------

~~substring(): 套路截取: 按起始位置,截取长度

select SUBSTRING('1234567890',3,5) ---> 34567

select substring('example.com', -4,2); --->.c


你可能感兴趣的:(Mysql常用函数)