sas帮助里的例子:
proc sql noprint; select style, sqfeet into :type, :size from sasuser.houses;%let type=&type;%let size=&size;%put The first row contains a &type with &size square feet.;
Executing this program writes to the SAS log:
The first row contains a RANCH with 1250 square feet.