Answer the question
In order to leave comments, you need to log in
How to correctly form a query to mysql?
There is an array of View IDs [123321, 154874, 12233] and so on.
There is a basis in which these ID are written down. How can I make a request to the database so that only those IDs that are not in the database are returned to me?
Answer the question
In order to leave comments, you need to log in
Select * From xxx Where xxx.id NOT IN (123321, 154874, 12233);
At a large number of records there will be brakes still those.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question