BookmarkSubscribeRSS Feed
varunsudham
SAS Employee

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.

1 REPLY 1
Steelers_In_DC
Barite | Level 11

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);

run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 9294 views
  • 1 like
  • 2 in conversation