Hello,
I have used many times the following code to find in which dataset in a particular library, a variable exist?
proc sql;
select name,memname
from dictionary.columns
where libname EQ 'MYLIBRARY' and UPCASE(name) EQ 'CUSTOMERNUMBER' ;
quit;
run;
How is it possible to find a dataset that contains two variables or more?
For exemple, if I am interested by var1 and var2, I would like to find a dataset Which have those two variables.
Any suggestion?
Regards,