sybase的SQL去掉字段中数据的空格(前空格、后空格、所有空格)

浏览:
字体:
发布时间:2013-12-10 00:11:57
来源:
sybase的SQL去掉字段中数据的空格(前空格、后空格、所有空格)
 
摘要:我们在使用sybase数据库的时候经常会遇到字段中出现不同位置的空格,如字段值前空格“   sdfsd”,字段值中间出现空格“sdfsdf  dsfsd”,字段值后面出现空格“sfsdfs”,当我们遇到这样的问题,我们怎么快速的去除所有的空格;
 
1、查询结果去掉左空格
 
select ltrim(字段) from xxxx  where id=278
 
2、查询结果去掉右空格
 
select rtrim(字段) from xxxx  where id=278
 
3、查询结果去掉所有的空格
 
select str_replace(字段,' ',null) from xxxx  where id=278
 
4、更新到sybase数据库去掉左空格
 
update xxxx set 字段=(
select ltrim(字段) from xxxx  where id=278
 
) where id=278
 
5、更新到sybase数据库去掉右空格
 
update xxxx set 字段=(
select rtrim(字段) from xxxx  where id=278
 
) where id=278
 
6、更新到sybase数据库去掉所有的空格
 
update xxxx set 字段=(
 
select str_replace(字段,' ',null) from xxxx  where id=278
 
) where id=278
 
>更多相关文章
24小时热门资讯
24小时回复排行
资讯 | QQ | 安全 | 编程 | 数据库 | 系统 | 网络 | 考试 | 站长 | 关于东联 | 安全雇佣 | 搞笑视频大全 | 微信学院 | 视频课程 |
关于我们 | 联系我们 | 广告服务 | 免责申明 | 作品发布 | 网站地图 | 官方微博 | 技术培训
Copyright © 2007 - 2024 Vm888.Com. All Rights Reserved
粤公网安备 44060402001498号 粤ICP备19097316号 请遵循相关法律法规
');})();