o******6 发帖数: 538 | 1 ☆─────────────────────────────────────☆
liqing (你快乐,所以我快乐。) 于 (Wed Mar 4 09:32:05 2009) 提到:
PLease see the following examples, could you please tell me what is wrong
with it? Thanks! I found even I use length statement, the value was still
cutted :(
data a;
input c $2. d;
datalines;
20 5
;
data b;
input d c $3. ;
datalines;
6 30e
;
data test;
length c $ 5 ;
set a b;
run;
proc print; run;
proc contents data=test;
run;
☆─────────────────────────────────────☆
ahab (ahab) 于 (Wed Ma |
|