vf帮我编一个程序!急急急!
发布网友
发布时间:2024-09-30 15:08
我来回答
共2个回答
热心网友
时间:2024-10-26 12:14
close all
set safe off
open database 工人工资
use 工资表
do while .not.eof()
if 工资>=5000
update 工资 set 工资=工资*0.94
else
update 工资 set 工资=工资*0.95
endif
enddo
set safe on
close all
不用skip也行的,命令照常能执行,因为工资不是大于等于5000,就是小于5000,只要指针不下出表,一直会更新新工资!
热心网友
时间:2024-10-26 12:15
use 工资表
do while not eof()
if 工资>=5000
update 工资表 set 工资=工资*0.94
else
update 工资表 set 工资=工资*0.95
endif
skip
enddo
use