i am dynamically forming a query in oracle to select data where i give id's as input's. my query goes is as follows
select * from temp where temp_id in ( :Id);
my input id are in thousands so i am dynamically creating the in clause in such a way that my final query is as follows
select *
from temp
where temp_id in (a1,a2,a3,....a999)
or temp_id in (b1,b2,b3,....b999) or so on ....
my problem here is even after that i am getting too many values exception. Can you please help me.
One approach is to use global temporary table: