代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
MSSQL
】
SQL查询和替换含有回车,空格,TAB
作者:
/ 发布于
2019/7/30
/
1124
--如下是查询语句 --查询名称有退格键 select * from t_bd_item_info where charindex(char(8),item_name) > 0 go --查询名称有制表符tab select * from t_bd_item_info where charindex(char(9),item_name) > 0 go --查询名称有换行 select * from t_bd_item_info where charindex(char(10),item_name) > 0 go --查询名称有回车 select * from t_bd_item_info where charindex(char(13),item_name) > 0 go --查询名称的空格(前空格、后空格、所有空格) select * from t_bd_item_info where isnull(charindex(' ',item_name),0) > 0 go --查询名称的单引号 select * from t_bd_item_info where charindex(char(39),item_name) > 0 go --查询名称的双单引号 select * from t_bd_item_info where charindex(char(34),item_name) > 0 go --处理名称有退格键 update t_bd_item_info set item_name = replace(item_name,char(8),'') where charindex(char(9),item_name) > 0 go --处理名称有制表符tab update t_bd_item_info set item_name = replace(item_name,char(9),'') where charindex(char(9),item_name) > 0 go --处理名称有换行 update t_bd_item_info set item_name = replace(item_name,char(10),'') where charindex(char(10),item_name) > 0 go --处理名称有回车 update t_bd_item_info set item_name = replace(item_name,char(13),'') where charindex(char(13),item_name) > 0 go --处理名称的空格(前空格、后空格、所有空格) update t_bd_item_info set item_name = replace(rtrim(ltrim(item_name)),' ','') where isnull(charindex(' ',item_name),0) > 0 go --处理名称的单引号 update t_bd_item_info set item_name = replace(item_name,char(39),'') where charindex(char(39),item_name) > 0 go --处理名称的双单引号 update t_bd_item_info set item_name = replace(item_name,char(34),'') where charindex(char(34),item_name) > 0 go
试试其它关键字
同语言下
.
SQL查询 多列合并成一行用逗号隔开
.
查看存储过程修改时间,最近执行时间
.
设置手动批量删除数据库相关进程
.
获取某个表中特定字段的所有字符串形式
.
SQL 如何去除重复的字符串
.
怎么去掉一个字段中的重复数据
.
String 去除空格 回车 换行 水平制表符
.
SQL查询和替换含有回车,空格,TAB
.
SQL SERVER 查询每日新增用户数量、次留数量
.
判断两个字符串是否存在相同的内容
可能有用的
.
SQL查询 多列合并成一行用逗号隔开
.
查看存储过程修改时间,最近执行时间
.
设置手动批量删除数据库相关进程
.
获取某个表中特定字段的所有字符串形式
.
SQL 如何去除重复的字符串
.
怎么去掉一个字段中的重复数据
.
String 去除空格 回车 换行 水平制表符
.
SQL查询和替换含有回车,空格,TAB
.
SQL SERVER 查询每日新增用户数量、次留数量
.
判断两个字符串是否存在相同的内容
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3