Let's say I have a list of identifiers, and I want to see if rows with these identifiers exist in my SQL database. Is there one SQL command that I can execute to return a subset of the list of identifiers that have not yet been presented in the database? I could iterate over each identifier in my code and produce a separate SQL check for each identifier, but that sounds inefficient.
I am trying to do this against sqlite database. thank you
source
share