Mysql正则表达式的两个使用

Mysql正则表达式的两个使用

update Friendship set friendGroup = trim(leading "2,"  from  friendGroup) where friendGroup REGEXP "^2,([:digit:],)*" ;

update Friendship set friendGroup = replace (friendGroup,',2,',',') where friendGroup REGEXP ",2,([:digit:],)*" ;

 

你可能感兴趣的:(Mysql正则表达式的两个使用)