two models in one regression
In SAS, you can estimate two distinct models with one call to proc reg.
proc reg data=USPopulation outest=est tableout alpha=0.1;
m1: model Population=Year/noprint;
m2: model Population=Year YearSq/noprint;
proc print data=est;
run;
*]