sqlserver 怎么转成字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver 怎么转成字符串相关的知识,希望对你有一定的参考价值。
参考技术A select convert(varchar,要转换的字段或值)本回答被提问者采纳 参考技术B select cast(字段 as varchar) from 表名--或者 select convert(varchar(50),字段) from 表名!sqlserver中怎么去掉单引号
如果确定单引号是在第一个字符的话,可以用三种方法实现:1、right截取字符串函数配合len函数:
1
2
update 表 set 登记薄编号=right(登记薄编号,len(登记薄编号)-1) where left(登记薄编号,1)=''''
update 表 set 身份证号=right(身份证号,len(身份证号)-1) where left(身份证号,1)=''''
2、substring截取字符串函数:
1
2
update 表 set 登记薄编号=substring(登记薄编号,2,100) where left(登记薄编号,1)=''''
update 表 set 身份证号=right(身份证号,2,100) where left(身份证号,1)=''''
3、replace替换字符子串函数:
1
2
update 表 set 登记薄编号=replace(登记薄编号,'''','')
update 表 set 身份证号=replace(身份证号,'''','') 参考技术A replace(字段名,''','')
以上是关于sqlserver 怎么转成字符串的主要内容,如果未能解决你的问题,请参考以下文章