70题练习的第45题,关于CSV的,我用sas验证了Excel和text editor都可以打开
ods csvall file='c:\test.cvs';
proc print data=WORK.ONE;
var Name Score Grade;
by IdNumber;
run;
ods csvall close;
What is produced as output?
A. A file named test.cvs that can only be opened in Excel.
B. A text file named test.cvs that can be opened in Excel or in any text editor.
C. A text file named test.cvs that can only be opened in a text editor.
D. A file named test.cvs that can only be opened by SAS.
把'c:\test.cvs'; 换为'c:\test.csv'; 也是都可以打开
于是选B 才是正确的啊
我用sas验证了Excel和text editor都可以打开