I have below SQL query which i need to pass around 50K id's in the WHERE clause,
select columnA
from TableA
WHERE COLUMNB ...
I tried to use IN(...) syntax but it's accepting maximum 5K entries.Can you tell the best approach to pass and execute the sql with this large dataset in the WHERE clause.
Thanks in Advance, Raghavan