Try this instead as your second query :
create table want as
select temp.*,c.date as c_date,
case
when c.date is missing then 'no'
else 'yes'
end as flag
from temp left join c on
temp.Machine=c.Machine and c.date between temp.date and temp.b_date;
(untested)
I'm guessing either or both of:
Difficult to diagnose without seeing the data. Can you either:
Also, if your issue is specifically a CASE/BETWEEN issue, can I suggest you leave out the other statements (joins, create table, etc)
Try this instead as your second query :
create table want as
select temp.*,c.date as c_date,
case
when c.date is missing then 'no'
else 'yes'
end as flag
from temp left join c on
temp.Machine=c.Machine and c.date between temp.date and temp.b_date;
(untested)
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.