常用的Sql 函数 1: replace 函数,替换字符. 语法 replace (original-string, search-string, replace-string ) 第一个参数你的字符串,第二个参数你想替换的部分,第三个参数你要替换成什么 select replace('helloword','h','a') 输出:aelloword 2: substring函数,截取字符串. 语法 SUBSTRING ( expression, start, length ) 第一个参数你的字…