gpt4 book ai didi

sql-server - SQL Server 导入向导将 NULL 视为文字字符串 'NULL'

转载 作者:行者123 更新时间:2023-12-03 21:02:42 25 4
gpt4 key购买 nike

当我尝试将 .csv 逗号分隔的平面文件导入 Microsoft SQL server 2008R2 64-bit instance 时,对于 string 列,原始数据中的 NULL 变为文字字符串 "NULL" ,而在 numeric 列中,我收到导入错误。有人可以帮忙吗???

最佳答案

将数据放入临时表,然后使用 SQL 代码插入到生产表中。

update table1
set field1 = NULL
where field1 = 'null'
或者如果你想做很多领域
update table1
set field1 = case when field1 = 'null' then Null else Field1 End
, field2 = case when field2 = 'null' then Null else Field2 End
, field3 = case when field3 = 'null' then Null else Field3 End

关于sql-server - SQL Server 导入向导将 NULL 视为文字字符串 'NULL',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17351099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com