SQL怎么批量更改整个表的某些数据,是其中几列不是一列,因为列数很多
我知道修改一列是updatetableset列1=''where列1='暂无信息'。怎么修改整个表,怎么一起修改几个列,比方3个列,怎么做...
我知道修改一列是
update table
set 列1=''
where 列1='暂无信息' 。怎么修改整个表,怎么一起修改几个列,比方3个列,怎么做 展开
update table
set 列1=''
where 列1='暂无信息' 。怎么修改整个表,怎么一起修改几个列,比方3个列,怎么做 展开
1个回答
展开全部
update table set 列1='',列2='',列3='' where 列1='暂无信息' or / and 列2='暂无信息' and /or 列3='暂无信息'
追问
如果是where 列1='暂无信息' or 列1='无'的话,update table set 列1='',列2='',列3='' where 列1='暂无信息' or 列1='无' or / and 列2='暂无信息' a。。。。。就可以吗,连接的各列的条件or/and是怎么个解释,看不懂啊
追答
update 表 set 列1=case when 列1='暂无信息'or 列1='无' then '' else 列1 end,列2=case when 列2='暂无信息'or 列2='无' then '' else 列2 end,列3=case when 列3='暂无信息'or 列3='无' then '' else 列3 end
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询