data a;
input a $ b c;
datalines;
p1 2 4
p2 3 8
p1 2 4
p3 8 9
;
run;
solution 1:
proc sort data=a out=b nodupkey;
by a b c;
run;
solution 2:
proc sort data=a out=c;
by a b c;
run;
data c;
set c;
by a b c;
if not first.a and not first.b and not first.c then delete;
run;