Hi all,
Can anyone suggest me how to or which function can be used to extract month from a date value in Teradata.
Ex: November from 25/11/2010(dd/mm/yy) date value.
Here you go:
data have;
infile cards dsd;
informat date_value ddmmyy10.;
format date_value ddmmyy10.;
input date_value;
cards;
25/11/2010
;
run;
data want;
set have;
/*numeric*/
month1 = month(date_value);
/*Character*/
month2 = substr(put(date_value,ddmmyy10.),4,2);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.Register now and lock in 2025 pricing—just $495!
Register now
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!