不用数组
CREATE CURSOR temp (编号 C(6),数据 C(6))
INSERT INTO temp (编号) VALUES ('1')
INSERT INTO temp (编号) VALUES ('A')
INSERT INTO temp (编号) VALUES ('V')
INSERT INTO temp (编号) VALUES ('S')
INSERT INTO temp (编号) VALUES ('WW')
INSERT INTO temp (编号) VALUES ('A')
SELECT 编号 FROM temp WHERE RECNO()>1 INTO CURSOR tmp
SELECT tmp
SET RELATION TO RECNO() INTO temp
REPLACE temp.数据 WITH tmp.编号 ALL
SELECT temp
BROWSE