Which of the following correctly creates a macro variable in a PROC SQL step?
call symput(daily_fee, put(fee/days, dollar8.);
%let daily_fee=put(fee/days, dollar8.)
select fee/days format=dollar8. into :daily_fee from sasuser.a
select fee/days format=dollar8. into daily_fee from sasuser.all;