I'd like some help constructing a proc sql step. I have a query like
PROC SQL;
SELECT title, rating, category
FROM movies
WHERE category LIKE 'D%';
QUIT;
What I'd like to do is make the D a macro variable i.e change at run time depending on user input but retain the % sign. Do I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.