* Popul2 Example Use proc sql to only continents with population > One hundred million; options ls=64 nodate pageno=1; data popul; infile "c:/datasets/popul.txt" firstobs=3; input continent $ 1-15 total_pop 16-26; proc sql; select continent, total_pop format=COMMA15. from popul where total_pop > 100000000 order by total_pop; quit;