수색…


통사론

  • LENGTH 변수 <$> 길이;

매개 변수

매개 변수 세부
변수) 길이를 할당하려는 변수
$ 변수가 문자 변수인지 여부를 지정하는 선택적 매개 변수입니다.
길이 변수의 길이를 지정하는 정수.

문자 변수에 길이 할당하기

data table;
set table;
length state_full $8;
if state = 'KS' then state_full = 'Kansas';
else if state = 'CO' then state_full = 'Colorado';
else state_full = 'Other';
run;


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow