close all
clear
use 2.dbf
if 成绩>90
replace all 等级 with '优秀'
else
if 成绩>70
replace all 等级 with '合格'
else
if 成绩<=60
replace all 等级 with '差'
endif
endif
endif
list
clear
use 2.dbf
if 成绩>90
replace all 等级 with '优秀'
else
if 成绩>70
replace all 等级 with '合格'
else
if 成绩<=60
replace all 等级 with '差'
endif
endif
endif
list