How to remove duplicates using PROC SQL?
Proc SQL noprint;
Create Table mergedtbl as
Select distinct * from readin ;
Quit;