1. CONCAT: 连接两个字符串; SQL> select concat('010-', '88888') || '转23' 张三电话 from dual; 张三电话 ---- 010-88888转23 4. INITCAP: 返回字符串并将字符串的第一个字母变为大写; SQL> select initcap('smith') upp from dual; UPP ----- Smith 5. INSTR(C1, C2, I, J): 在一个字符串中搜索指定的字符, 返回发现指定的字符的位置; C1被搜索的字符串C2希望搜索的字符串I搜索的开始位置, 默认为1 J出现的位置, 默认为1 SQL> select instr('oracle traning', 'ra', 1, 2) instring from dual; INSTRING ---