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