– 字符串函数
– 1.获取字符串
select char_length('hello');
-- 5
– length 取长度,返回的单位是字节
select length('hellow') -- 5\
select length('你好吗');
-- 9
– 2.字符串合并
select concat('hellow','world');
– 3.指定分隔符进行字符串的合并
select concat_ws('_','hellow','world');
– 4.返回字符串在列表中的位置
select field('aaa','aaa','bbb','ccc');
【笔记|mysql中的字符串函数】– 5.去除字符串左右边的空格
select ltrim('aaaa');
select rtrim('aaa');
select trim('aaa');
-- 去除两端空格
– 6.字符串的截取:
select mid('helloworld',2,3);
-- 从第二个字符开始截取,截取长度为3
– 7.获取字符串A在字符串中的位置
select position('abc' in 'hellowabcworld');
– 8.字符串的替换
select replace('helloaaaworld','aaa','bbb');
– 9.字符串的翻转
select reverse('hello');
– 10.返回字符串的后几个字符
select right('hello',3);
-- 返回后面三个字符
– 11.字符串的比较
select strcmp('hello','world');
– 12.字符串的截取
select substr('hello',2,3);
-- 从第二个字符截取三个
select substring('hello',2,3);
– 13.将小写转大写
select ucase('helloWorld');
select upper('helloWorld');
– 将大写转为小写
select lcase('helloWorld');
select lower('helloWorld');
推荐阅读
- Qt|QtSql数据库的三种创建方式
- 职场|第109个母亲节快乐,程序猿特殊的表达
- Android数据库表
- Learning|MySQL数据库使用小皮系统(phpstudy)的安装及配置流程
- Android 原生 SQLite 数据库的一次封装实践
- Android(Sqlite3数据库查看方法)
- java|美团配送 二面(40min) Java后端 暑期实习面经
- SQL学习网站推荐
- Dapper数据库字段和model属性映射