多谢作者: shiyiming 时间: 2004-6-24 04:29 标题: Have not been here for a while. [code:619d1]data a;
input a b c;
datalines;
1 2 3
2 3 4
3 4 5
;
data b;
input a d e;
datalines;
2 5 6
5 6 7
7 8 9
;
run;
proc sql;
create table c as
select *
from a
where a not in (select a from b);
quit;[/code:619d1]作者: shiyiming 时间: 2004-6-24 13:06 标题: answer 我明白你的意思,我以前也尝试过,用简单的sql语句是不可以的,需要更多的附加语句作者: shiyiming 时间: 2004-7-9 09:52 标题: 使用all关键字 可能是你没有使用All关键字,而使A中的重复数据合并删除