I want to search for list of drugs in oracle database. can I list all the drugs in proc sql in where clause as below?
WHERE (
(A.PRODUCT_DESC_1 CONTAINS ('ARIPIPRAZOLE',' ASENAPINE',BREXPIPRAZOLE)
I got ERROR 22-322: Syntax error, expecting one of the following: !, !!, &, )
Please help
Thanks,
Hi,
proc sql;
select *
from <YOUR_TABLE> A
where A.PRODUCT_DESC_1 in ("ARIPIPRAZOLE","ASENAPINE","BREXPIPRAZOLE");
quit;
CONTAINS doesn't support a list as argument. You need to combine them with OR.
The syntax is incorrect, you need a contains for each argument, definitely a bit cumbersome.
A.PRODUCT_DESC_1 CONTAINS ('ARIPIPRAZOLE')
or CONTAINS ('ASENAPINE')
or ...
Hi,
proc sql;
select *
from <YOUR_TABLE> A
where A.PRODUCT_DESC_1 in ("ARIPIPRAZOLE","ASENAPINE","BREXPIPRAZOLE");
quit;
There are other constructs which may help you:
where XYZ like "*ABC*";
will give you all which contain the string ABC.
No, like is used for pattern matching. Why are you looking for drug names by the way? Should you data not be encoded with WHODrug codes - that is not only safer (you don't miss ones) its simpler as well because you can use higher level terms to bring out groups of related drugs. Also its standard in the industry.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.