我将4只扁平苍蝇导入4个sql表中。所有文件都有77列。导入后,我需要将所有4个表的空字段更新为Null。以下是语法:
DECLARE @iCount as integer
DECLARE @sCol1 as varchar(50)
--Replace all empty fields with NULL value
--Update audWeeklycs
Set @iCount =0
While @iCount<=76
Begin
if @iCount <=9
set @sCol1='[Col00'+CAST(@iCount as varchar (2))+']'
else
set @sCol1='[Col0'+cast(@iCount as varchar (2))+']'
Update MHP_Analysis.dbo.audWeeklycs
Set @sCol1= case when len(rtrim(ltrim(@sCol1)))=0 then Null else @sCol1 end
Set @iCount=@iCount+1
End
运行此语句后,我发现空字段没有变化。无法弄清楚为什么。我也试过NULLIF函数,但没有用。
答案 0 :(得分:0)
您的UPDATE
语句无法在数据库中更新任何内容,因为它只更新变量。我们来看看:
Update MHP_Analysis.dbo.audWeeklycs
Set @sCol1= case when len(rtrim(ltrim(@sCol1)))=0 then Null else @sCol1 end
使用WHILE
周期的algorythm不是最佳解决方案,但在您的情况下,您可以使用动态SQL进行实际更新。像这样:
-- somewhere outside your cycle
DECLARE @SqlCmd VARCHAR(1000)
-- replace your update statement with this code
SET @SqlCmd =
'Update MHP_Analysis.dbo.audWeeklycs
Set ' + @sCol1 + ' = case when len(rtrim(ltrim(' + @sCol1 + ')))=0 then Null else ' + @sCol1 + ' end'
EXEC (@SqlCmd)