In SQL Developer when I want to provide a list of values to a single placeholder SQL developer reads them as one value. e.g
select * from some_table where some_value in (:list_of_values);
When I enter 1,2,3 into the Value text box it oracle reads all 1,2,3 as one
value