在下面的示例中,先打开 customer 表。然后创建一个二维数组,并且复制 customer 的前三条记录到数组。display memory 显示存储在数组中的数据。
close databases
open database (home( ) + 'samples\data\testdata')
use customer && 打开customer表
dimension gatemp(3,10)
copy next 3 to array gatemp
display memory like gatemp