发布网友
共3个回答
热心网友
你是在查询的时候操作还是要做更新操作
是空还是null
查询时操作
NULL
select isnull(字段名, '复制)
select replace(字段名, ' ', '赋值')
更新操作
空
update 表名
set 字段名=内容
where 字段名 =''
NULL
update 表名
set 字段名=内容
where 字段名 is null
热心网友
update 表名
set 字段名=内容
where 字段名 is null
热心网友
slect A into :B from al;