Mysql:从字符串中提取子字符串

时间:2014-08-08 07:17:25

标签: mysql

如何从像

这样的字符串中提取子字符串

utm_term=beat%20complaint

预期结果:beat complaint

utm_term=customer%20care

预期结果:customer care

1 个答案:

答案 0 :(得分:1)

您应该查看documentation

您正在寻找的功能是REPLACE

 SELECT REPLACE('utm_term', '%20', ' ');