I have to find all those records for which I provide ids, so here is my query
SELECT * FROM `inf_company` where id IN(25523,25511,25448,28094,25243.....)
I provide 500 Ids in above query but it give me 200 records. I want to find rest of missing 300 records.
I want to see all those ids in my list which is not shown in result. How could be the query for that?