Reputation: 617
data work.temp;
length A B 4;
infile '';
input A B;
run;
data work.temp;
length A 4 B 4;
infile '';
input A B;
run;
Is there any difference between these two?
Upvotes: 0
Views: 63
Reputation: 5452
No, check the properties of work.temp
after running both. You should see that A
and B
are both set as numeric with length 4 in both cases.
Upvotes: 2