BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
sarahzhou
Quartz | Level 8

Hi, 

 

I encounter a problem when querying a data range in SQL server, when the comparison is less than a 'date', it went wrong. However, when a date is equal to a 'date' it works.

 

the blow query has an error;

proc sql noprint;
connect to sqlver as myserver (darasrc="share_data" authdomain="nopassword");
create table class_schedule as sellect * from connect to myserver 
(select * from table_classA where class_date <'01NOV2022');
disconnect from sqltgt;
quit;

 

the blow query has no errors;

proc sql noprint;
connect to sqlver as myserver (darasrc="share_data" authdomain="nopassword");
create table class_schedule as sellect * from connect to myserver 
(select * from table_classA where class_date ='01NOV2022');
disconnect from sqltgt;
quit;

 

But, I am interested in selecting the data less than a date, I need to use the "<" sign. How can I achieve that?

 

Kindly help.

Thank you!

1 ACCEPTED SOLUTION
4 REPLIES 4
sarahzhou
Quartz | Level 8

I found the problem. Thanks, pls ignore.

 

 

LinusH
Tourmaline | Level 20
Or, tell us how you solved it for the benefit of others.
Data never sleeps
sarahzhou
Quartz | Level 8

Thank you @Kurt_Bremser 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 574 views
  • 0 likes
  • 3 in conversation