I need to do multiple LIKEs .
I have the following code
select * from product where product_code LIKE IN ('MS%','TS%')
However I am getting the following error
ORA-00936: missing expression 00936. 00000 - "missing expression"
Am I using the correct syntax?
Thanks