Inactive Tutor answered 03/15/19
Tutor
New to Wyzant
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;