BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Babloo
Rhodochrosite | Level 12

Appreciate if some of you help me understand what the following where clause will do?

 

WHERE '31Jan2017'd between t1.PREMIUM_BEG_DT AND t1.PREMIUM_END_DT
1 ACCEPTED SOLUTION

Accepted Solutions
Satish_Parida
Lapis Lazuli | Level 10
It will filter records where PREMIUM_BEG_DT<31-Jan-2017 and PREMIUM_END_DT>31-Jan-2017

View solution in original post

3 REPLIES 3
Satish_Parida
Lapis Lazuli | Level 10
It will filter records where PREMIUM_BEG_DT<31-Jan-2017 and PREMIUM_END_DT>31-Jan-2017
RW9
Diamond | Level 26 RW9
Diamond | Level 26

This is basic SQL knowledge, perhaps have a read of the SQL in SAS help documents, or help documents on SQL:

https://www.w3schools.com/sql/sql_between.asp

s_lassen
Meteorite | Level 14

Basically, it will select all rows where the begin-date is before or on the 31st of January  2017, and the end date is on that date or after. If you are doing standard SQL, that is (in SAS, that happens if you write Pass-through SQL calls, or if the where clause is passed directly to an external DBMS).

 

But, if you are doing SAS SQL, it can also be the opposite, if the begin date is larger than the end date. Including if the end date is missing, and the begin date is after the date in question. SAS has a problem with missing values in where clauses, and with the between condition.

 

 

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!

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
  • 3 replies
  • 969 views
  • 3 likes
  • 4 in conversation