sqlserver中含有某字符串查 sqlserver 中字符串的ascii码
SET TEXTSIZE 0
-- Create variables for the character string and for the current
-- position in the string.
DECLARE @position int, @string char(8)
-- Initialize the current position and the string variables.
SET @position = 1
SET @string = '—销售定转⼦冲⽚及转⼦齿压板等(北京三⼀)'
字符串截取 sqlWHILE @position <= DATALENGTH(@string)
BEGIN
SELECT ASCII(SUBSTRING(@string, @position, 1)),
CHAR(ASCII(SUBSTRING(@string, @position, 1)))
SET @position = @position + 1
END
GO
发现特殊字符char(31),单元间隔符
查sqlserver中是否含有该特殊字符
两种⽅案
select * from  GL_accvouch where cdigest like '%'+ char(31)+'%'
select * from  GL_accvouch where CHARINDEX(CHAR(31),cdigest)<>0
或者使特殊字符显⽰出来
select REPLACE(cdigest,char(31),'xx'),* from gl_accvouch
最后替换特殊字符

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。