Advertisement
emsull7

Untitled

Dec 13th, 2022
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1.  proc sql;
  2. 2create table state as
  3. 3select country, product, statename, population_2010
  4. 4from sashelp.prdsal2 as Product, sashelp.us_data as US;
  5. 5where product.state = US.statename;
  6. 6quit;
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement