BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
I would like to retrieve records in Proc sql , employees hired between two dates. How can I enter two dates in where clause in proc sql?
I get error if I use the follwing statement
WHERE CURRENT_HIRE_DATE GE 01Sep2006 AND
CURRENT_HIRE_DATE LE 31Aug2007.


Please give your suggestions

Thanks,
Vanitha
1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
Diamond | Level 26

Hi:
The simple answer is that you need to use the right method for referencing the date:

where current_hire_date between "01Sep2006"d and "31Aug2007"d;


The d after the date is called a date constant. You can look up how the date constant, the datetime constant and other constants work in the SAS online documentation or help files.

The above code makes the assumption that CURRENT_HIRE_DATE contains a DATE value (number of days since Jan 1, 1960) and NOT a DATE/TIME value. For more help with these concepts or for quick resolution of your code issues, you might consider contacting Tech Support.

cynthia

View solution in original post

1 REPLY 1
Cynthia_sas
Diamond | Level 26

Hi:
The simple answer is that you need to use the right method for referencing the date:

where current_hire_date between "01Sep2006"d and "31Aug2007"d;


The d after the date is called a date constant. You can look up how the date constant, the datetime constant and other constants work in the SAS online documentation or help files.

The above code makes the assumption that CURRENT_HIRE_DATE contains a DATE value (number of days since Jan 1, 1960) and NOT a DATE/TIME value. For more help with these concepts or for quick resolution of your code issues, you might consider contacting Tech Support.

cynthia

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 36927 views
  • 0 likes
  • 2 in conversation