VF如何复制表记录到二维数组

VF如何复制表记录到二维数组,第1张

首先要确保你的student表也有6个字段,且不是备注的, 而且学号字段是第一个
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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12691788.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-27
下一篇 2023-05-27

发表评论

登录后才能评论

评论列表(0条)

保存