* Popul1 Example Use proc sql to display entire dataset; options ls=64 nodate pageno=1; data popul; infile "c:/datasets/popul.txt" firstobs=3; input continent $ 1-15 total_pop 16-26; proc print; format total_pop COMMA14.; run; proc sql; select * from popul; quit;