oracle中去掉数据中的下划线,varchar型

select replace(total_count,’_’,’’) AS total_count from t_check_total;

total_count是我需要查的字段,将下划线变为空,t_check_total为表名;这样写结果中total_count字段会变成replace(total_count,’_’,’’),所以需要取个别名。

Ok啦!

你可能感兴趣的:(oracle,数据库)