zhuoer
zhuoer

Reputation: 617

Difference between these two SAS programs?

  1. data work.temp; length A B 4; infile ''; input A B; run;

  2. data work.temp; length A 4 B 4; infile ''; input A B; run;

Is there any difference between these two?

Upvotes: 0

Views: 63

Answers (1)

mjsqu
mjsqu

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

Related Questions