码迷,mamicode.com
首页 > 其他好文 > 详细

6.04 从字符串中删除不需要的字符

时间:2017-09-14 10:27:26      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:字符串   from   name   select   rom   字符   ace   需求   nbsp   

需求:删除所有的0和元音字母。

 

select ename,
replace(
replace(
replace(
replace(
replace(ename,‘A‘,‘‘),‘E‘,‘‘),‘I‘,‘‘),‘O‘,‘‘),‘U‘,‘‘) as stripped1,
sal,
replace(sal,0,‘‘) stripped2
from emp;

6.04 从字符串中删除不需要的字符

标签:字符串   from   name   select   rom   字符   ace   需求   nbsp   

原文地址:http://www.cnblogs.com/liang545621/p/7518766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!