我有两个文件,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