SQL Server中格局化表中的数据[MSSQL防范]
本文“SQL Server中格局化表中的数据[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
在数据库开辟中,由于用户录入信息的随便性,大概产生表内字符串范例的数据两头存有空格,或大小写不一致等现象,赐与后数据利用历程中造成不必要的麻烦.这里简单利用了一个存储历程来办理这些问题.
/* 整理系统数据*/
CREATE? PROCEDURE pro_ClearupData
as
--第一部份 整理字符串范例的数据? 去除两头的空格
? declare @tableName? varchar(50)? --表名
? declare @columnName varchar(50)? --列名
? declare cur_find??? cursor for select so.name,sc.name
?????????????????????????????????? from syscolumns sc, sysobjects so, systypes st
????????????????????????????????? where so.name <> 'dtproperties'
??????????????????????????????????? and st.xtype=sc.xtype
??????????????????????????????????? and st.name='varchar'
??????????????????????????????????? and sc.id=so.id
??????????????????????????????????? and so.xtype='u'
?? --查找包含varchar范例字段的全部用户表
?? open cur_find
?? fetch next from cur_find into @tableName,@columnName
?? while @@fetch_status=0
?? begin
????? --去掉字段的两头空格
????? exec('update '+@tableName+' set '+@columnName+'=ltrim(rtrim('+@columnName+'))')
????? fetch next from cur_find into @tableName,@columnName
?? end
?? close cur_find
?? deallocate cur_find
GO
以上是“SQL Server中格局化表中的数据[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |