[求助]如何在显示中去掉B->
clearset talk off
select 2
use 成绩
index on 考号 tag 考号
select 1
use 考生信息表
set relation to 考生信息表.考号 into 成绩
replace 总分 with b.笔试成绩+b.上机成绩
if b.笔试成绩>=60 and b.上机成绩>=60
replace 是否通过 with .T.
else
replace 是否通过 with .F.
endif
? "------------------等级考试通过的考生信息查找结果------------------"
disp 考号,姓名,b.笔试成绩,b.上机成绩,是否通过 for 是否通过
? "......"
? "------------------------------------------------------------------"
close all
set talk on
代码显示时b.笔试成绩,b.上机成绩 都显示为B->笔试成绩,B->上机成绩 这2个是子表的,如何去掉B->