语法:
REPLACE ( string_expression , string_pattern , string_replacement )
参数:
返回类型:
上面都是官话,不好懂!翻成白话:REPLACE(String,from_str,to_str) 即:将String中所有出现的from_str替换为to_str。
语法:
substring_index(str, delim, count)
参数:
select SUBSTRING_INDEX(‘mooc_100018252‘,‘_‘,-1); // 结果: 100018252
json_extract(attributes_json,‘$.DP‘) //获取json中指定的值
attributes_json->‘$.DP‘
attributes_json->>‘$.DP‘ //可以有两个尖括号
json_unquote()
如:
select json_unquote(json_extract(attributes_json,‘$.DP‘)) as column_value from t_demand_point where instance_id=2146
sql处理字符串: replace替换, substring_index拆分和处理json
原文:https://www.cnblogs.com/linyufeng/p/13041500.html