Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Country Company Year date
  2. A 1 x x1
  3. A 1 x x2
  4. B 2 x x1
  5. C 3 x x3
  6.  
  7. proc sql ;
  8. create table lib.count as
  9. select country, count(distinct company) as count
  10. from lib.data
  11. group by country;
  12. quit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement