当前位置: 代码迷 >> VFP >> dbf能不能做到set xx=xx where xx=qq的功能解决方案
  详细解决方案

dbf能不能做到set xx=xx where xx=qq的功能解决方案

热度:907   发布时间:2013-02-26 00:00:00.0
dbf能不能做到set xx=xx where xx=qq的功能
由于项目需要 要把一个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
  相关解决方案