If you are looking for this in one table another option would be one of the report procedures such as Tabulate or Report
here's a Tabulate example:
proc tabulate data=work.aa;
class sex crace msmoke pvprem newmeduc/missing;
var bwt;
table sex crace msmoke pvprem newmeduc,
bwt*(n mean std Min Max);
run;
... View more