朱世武的书中关于数据集的加密,举例的程序中有以下的内容
data a;
x=1;
data b;
y=2;
run;
data c(write=write_ps alter=alter_ps);
set a b;
run;
data c;
modify c(write=write_ps);/*语句1*/
x=14;
run;
data c;
set c(alter=alter_ps);/*语句2*/
x=15;
run;
我的问题是:程序执行的时候,为什么语句1不会弹出密码输入框,而语句2却会?明明语句2的数据集选项中已经把正确的密码带入了啊