public st2
dimension st2(3,6)
select student
go 4
copy to array st2 next 3 &&从第4个记录开始, 取3条记录, 即4,5,6
st2(1,1)='s0201202'
st2(2,1)='s0201203'
st2(3,1)='s0201204'两个表的结构是不是一样的?
如果是一样的。直接用append from 命令就可以了。
比如说你原表是F1,新表是F2
SELECT FORM F1 INTO CURSOR _临时表
USE F2
APPEND FROM _临时表use 学生基本情况表
copy stru to 学生资料
sele from 学生基本情况表 where int(val(学号))%2=1 into table 学生资料use table1
copy to table2 all for recno()>=2 and recno()<=5
copy to abctxt type sdf
use table2
append from abctxt type sdf
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)