PROC COPY
을 사용하는 것이 더 쉽습니다. SELECT
문에서 :
을 와일드 카드로 사용할 수 있습니다.
12220 proc copy inlib=work outlib=out;
12221 select c:/mtype=data ;
12222 run;
NOTE: Copying WORK.CHECK to OUT.CHECK (memtype=DATA).
NOTE: There were 3 observations read from the data set WORK.CHECK.
NOTE: The data set OUT.CHECK has 3 observations and 4 variables.
NOTE: Copying WORK.CLASS to OUT.CLASS (memtype=DATA).
NOTE: There were 19 observations read from the data set WORK.CLASS.
NOTE: The data set OUT.CLASS has 19 observations and 5 variables.
출처
2017-11-16 15:32:13
Tom
여기에 맞는 것이 있습니까? (테이블 이름은 's'로 시작 함) –
'select' 문에서'c :'를's :'로 대체하십시오. – Tom
그것은 작동합니다! 정말 고맙습니다. –