How to put more than 1000 values into an Oracle IN clause [duplicate]

Put the values in a temporary table and then do a select where id in (select id from temptable)

Leave a Comment