gpt4 book ai didi

sql - 将表中的所有列设置为 `null`

转载 作者:行者123 更新时间:2023-12-04 14:26:10 24 4
gpt4 key购买 nike

有没有一种快速的方法可以将表中所有空字段更改为空字段。我有很多列,所以想知道是否有办法按表而不是按列来做。

我需要类似的东西

update table 1 
set * = ''
where * is null

但显然这是不正确的语法

最佳答案

此代码将生成更新语句列表,您只需运行它:

SELECT  'update '+ so.name+' set '+sc.name+'= '''' where '+sc.name+' is null '   
FROM sysobjects so
JOIN syscolumns sc ON so.id = sc.id
JOIN systypes st ON sc.xtype=st.xtype
where so.type = 'U'
and st.name in('varchar','char')
--and so.name = 'tab' <--- if you need update only one table

Here (sql fiddle)你可以看到它是如何工作的。

关于sql - 将表中的所有列设置为 `null`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12954342/

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