+1 vote
in SAS by

Mention how to remove duplicates using PROC SQL in SAS?

1 Answer

0 votes
by

To remove duplicates using PROC SQL use following step,

  1. Proc SQL noprint;
  2. Create Table inter.merged1 as
  3. Select distinct * from inter.readin ;
    1. Quit;
...