in Software Defined Networking by

How to remove duplicates using PROC SQL?

1 Answer

0 votes
by

Proc SQL noprint;

Create Table mergedtbl as

Select distinct * from readin ;

Quit;

...