Max number of values in IN clause
536726Sep 29 2006 — edited Jun 6 2013I know it is not efficient, but I need to select a huge number of invoices and the only thing I know is the invoice number. The query will look like
select * from ap_invoices_all where invoice_number in ('1001', '1002', ....)
How many invoice numbers can I put in this query without getting an error?
Thanks!