VFP中不知道,我只知道使用alter一般是对表结构进行修改,update一般是对表数据进行修改。比如说alter table A rename to B,就是把表名为A的表重命名为B update table A set id=12 就是把数据表A中的id那一列的数据修改为12.
update用来修改的:update 表set 列="新值"where 条件