I would simplify your query down to something that works then progressively add lines back until it fails. Try starting with something like this:
proc sql;
SELECT count(*) as count
FROM MAP_INPUT AS MI
INNER JOIN rule_trans3 AS RT
ON MI.POST_DATE = RT.POST_DATE
;
Yes, if I use equal sign it works, problem is need to use like operator.
Please explain why you need to use LIKE.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.