
Alexander D. answered 03/15/19
Tutor
5.0
(63)
Experienced Quantitative Analytics Specialist
you can use sas function within sql statements. My preferred is catx. The first argument is the delimiter used between fields passed, so for the below the delimiter is nothing.
proc sql;
create table test as select catx('', year,month) as ym from tbl;
quit;