I am missing something about single quotes and in statements that would be very helpful.
Select *
from list
where first_name in ('JAMES','JACK');
returns the list of all people with the first name of James and Jack.
However, when doing:
Select *
from list
where first_name in (:names);
What do I have to set the names variable to? I've tried what seems like infinite combinations of '''JAMES'',''JACK''' ETC in order to get rid of the single quotes issue, but nothing seems to work.