PROC UNIVARIATE computes the univariate statistics for one variable, CityPop_90. It uses the default table definition, base.univariate.moments from the template store sashelp.tmplmst.
proc univariate data=statepop mu0=3.5;
   var citypop_90;
title 'Default Moments Table';
run;