I am writing the java program in which I need to compare the large number of List<String> ids
to see are these ids are exist in the database ? I know it can be done with big select query select id from my_table where id in ('1','2''3''4''5'...)
which leads very big sql query.
is there any other way of doing this in Oracle 11g ?
Thanks