Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. proc sql;
  2. create table newtable as
  3. select distinct Col1, Col2, Col3, Col4, ... , Col10 from oldtable;
  4. quit;
  5.  
  6. proc sql;
  7. create table newtable as
  8. select (distinct Col3), * from oldtable;
  9. quit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement