Hi,
I have a select statement that is currently doing this
Select *
from product
where product_reference in ('prod1','prod2');
What I would like to do is change the ('prod1','prod2') to a single string (or even better an array ) that holds all the product codes that I require?
can anyone help?
Thanks
cam
I have a select statement that is currently doing this
Select *
from product
where product_reference in ('prod1','prod2');
What I would like to do is change the ('prod1','prod2') to a single string (or even better an array ) that holds all the product codes that I require?
can anyone help?
Thanks
cam