当前位置:首页 » 编程语言 » sqlserver的len

sqlserver的len

发布时间: 2024-10-30 08:41:24

‘壹’ 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(身份证号,'''','')

‘贰’ sqlserver存储过程 限制字段长度

inseterd 插入触发器里判断下数据长度len()是否为11,不为11不做插入操作

热点内容
删除手机浏览器缓存的视频在哪里 发布:2024-10-30 11:13:45 浏览:246
电脑换配置什么不用换 发布:2024-10-30 11:11:58 浏览:976
ifelseifsql 发布:2024-10-30 11:03:13 浏览:127
android70三星 发布:2024-10-30 10:56:59 浏览:849
qt字符串加密 发布:2024-10-30 10:26:12 浏览:903
福建免费云空间工具服务器 发布:2024-10-30 10:25:06 浏览:460
安卓被拉黑是什么意思 发布:2024-10-30 10:23:47 浏览:319
qq关漫游为什么要密码 发布:2024-10-30 10:18:50 浏览:334
androidipad 发布:2024-10-30 10:13:28 浏览:578
皮箱密码忘记如何更换 发布:2024-10-30 10:02:04 浏览:987