data con1;
input custom_id product $ 12.;
cards;
28901 pentium IV
36815 pentium III
21224 pentium IV
;
Run;
data con2;
input custom_id product $ 12.;
cards;
18601 pentium IV
24683 pentium III
851921 pentium IV
61831 pentium IV
;
run;
Data Set_3;
Set con1;
Set con2 ;
where custom_ID > 25000 ;
Run;
问题 : 因为这是两个 set 语句。 在 Set_3 中应该只有851921 pentium IV 记录。 为什么有两条 ?