常用的sql函数
-
- concat(‘hello‘,‘world‘) 结果:helloworld 作用:拼接
- substr(‘helloworld‘,1,5) hello 截取(前后下标都包括)
- substring(‘helloworld‘,1,5) hell 截取(前包括后不包括)
- length(‘edtrfytg hjpjiuy‘) 16 获取字符串长度(包括空格)
- instr(‘helloworld‘,‘w‘) 6 查找指定字符的下标
- replace(‘tyuu7‘,‘u‘,‘m‘) tymm7 替换指定的字符
时间: 2024-10-19 00:03:57