+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;

Related questions

+1 vote
asked Jun 10, 2020 in SAS by JackTerrance
0 votes
asked Jun 11, 2020 in SAS by JackTerrance
...