data mydb.student; infile "c:\mydb\temp1.txt"; input id name $ sex $ score; run; --写法3 libname mydb 'c:\mydb'; data mydb.student; filename f1 'c:\mydb\temp1.txt'; infile f1 input id name $ sex $ score; run; 2.外部数...