I have a table that has two numeric values called year
and month
. I would like to create a new table that has one value called ym
which is just the concatenation of year
and month
. Here is an example:
proc sql;
create table test as
select CONCAT(year, month) as ym from tbl;
run;
What is the CONCAT
function that goes there?