BookmarkSubscribeRSS Feed
sdixit
Obsidian | Level 7

Hi All,

 

Could someone assist me how I can read only the last day of the month data from my table .

 

Example :

 

I have a sql to pull the data from netezza table to SAS Based on the period dates which has daily data But i need to pull only the data

of last day of each month. How can i accomlipsed that in the sql pass through?

 

Period date

01jul

02jul

30jul==> need this data

01aug

02aug

03aug

31aug ==> need this data

 

Thanks

Shuchi

 

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well, I don't know that database and its out o scope for this forum.  From a SAS standpoint you can filter the recieved data in a datastep after the sql, or you can go and investigate the database's functions and guidance and build a working SQL clause there.

 

Edit: logically the process is to group the data by month(date) and output when date=max(date) by month.  So first step would be to get month, maybe:

https://stackoverflow.com/questions/4500390/netezza-sql-extract-month-issue

kiranv_
Rhodochrosite | Level 12

there is last_day function in neteezza, which you can derive last day and then in your where clause you can say where last day = your day

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2 replies
  • 1176 views
  • 0 likes
  • 3 in conversation