当前位置: 代码迷 >> VFP >> 想在两个DBF文件中根据相同条件进行替换,请帮忙,在线急解决方法
  详细解决方案

想在两个DBF文件中根据相同条件进行替换,请帮忙,在线急解决方法

热度:4851   发布时间:2013-02-26 00:00:00.0
想在两个DBF文件中根据相同条件进行替换,请帮忙,在线急!
我有两个文件,trend1和trend2,现在需要在两个表tagname和tagtype同时相同的时候,用trend1中的pcu,module,block替换掉trend2中的相同列,语句怎么写,我的foxpro是5.0的

------解决方案--------------------------------------------------------
use trend1
scan
update trend2 set pcu=trend1.pcu,module=trend1.module,block=trend1.block where trend2.tagname=trend1.tagname and trend2.tagtype=trend1.tagtype
endscan

------解决方案--------------------------------------------------------
vfp9:
update trend2 set pcu=trend1.pcu,module=trend1.module,block=trend1.block from trend1 where trend2.tagname=trend1.tagname and trend2.tagtype=trend1.tagtype
  相关解决方案