用sql:
update [tableName] set B=A where B = '' or B is null
如果想保证数据库中的数据符合格式,那么就需要在程序中判断
最好是在插入前就做判断,或在数据库端写触发器。
update table set B=A where B is null
或在添加数据的时候用程序去判断。
update xx set B=A where isnull(B,'')=''
update tablename set B=ISNULL(B,A)
这种逻辑型程序 还是在程序里写 更好 方便以后调试