How to enter binds for a multi-valued parameter in SQL Developer
问题 I have a lot of SQL with named parameters that I need to be able to execute in SQL Developer. For SQL where the parameters are scalar values it's easy to paste the SQL into a worksheet and SQL Developer will prompt me (in a dialog with the title "Enter Binds") to enter the parameter values. But for cases where the parameter needs to hold multiple values, like this: select count(*) from foo where foo.id in (:ids) where, say, :ids needs to be replaced with 1,2,3 so that the query executed is