由于项目需要 要把一个dbf文件更新
能不能这样
set 字段a =‘已婚’
where 字段b>25岁 and 字段a is null
and
set 字段a =‘未婚’
where 字段b>=25岁 and 字段a is null
那位大侠帮忙下
------解决方案--------------------------------------------------------
可以!
update tableName
set 字段a =‘已婚’
where 字段b>25岁 and 字段a is null