sql语句如何将一个字符串拆分重组比如一个字段`email`存放形如'user#youerw.com'的邮箱地址, 我希望将这个字段select出来后,重组为形如'youerw.com/user/'的路径格式。
select concat(substring_index(email,'@',1),'/',substring_index(email,'@',-1),'/') from tb