Here is the SAS program I wrote to display a userid and the count of the userid:
proc sql;
create table address1 as
select addruserid, count(addruserid) as addrCount
from my.address
where addrdate between '26-feb-2007'd and '31-mar-2007'd
group by addruserid;
run;
Everything works okay except the date.
I get a message that says,NOTE 49-169: The meaning of an identifier after a quoted string may change in a future SAS
release. Inserting white space between a quoted string and the succeeding identifier is recommended.
I had been running similar programs for months without issue. I am running SAS 9.3. Was there a change that makes this display of dates incorrect?? Is there a fix for this??
proc sql;
create table address1 as
select addruserid, count(addruserid) as addrCount
from my.address
where addrdate between '26-feb-2007'd and '31-mar-2007'd
group by addruserid;
run;
Everything works okay except the date.
I get a message that says,NOTE 49-169: The meaning of an identifier after a quoted string may change in a future SAS
release. Inserting white space between a quoted string and the succeeding identifier is recommended.
I had been running similar programs for months without issue. I am running SAS 9.3. Was there a change that makes this display of dates incorrect?? Is there a fix for this??