Hi All
I want to seach more than 15000 values in a select statement as shown below:
select * from tableA where id in (1,2,3......16000)
Can I use threads, say around 3, and partion 15000 values in diffrent select statement.
select * from tableA where id in (1,2,3......5000)
select * from tableA where id in (5001....10000)
select * from tableA where id in (10001....15000)
and run these 3 select statment in parallel.