首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > VFP >

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

2012-02-16 
想在两个DBF文件中根据相同条件进行替换,请帮忙,在线急!我有两个文件,trend1和trend2,现在需要在两个表tag

想在两个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

热点排行