I want to check my database for records that I have already written before making a web service call.
Here is what I imagine, what the query looks like, I just can't understand the syntax.
SELECT *
FROM (1,2,3,4) as temp_table
WHERE temp_table.id
LEFT JOIN table ON id IS NULL
Is there any way to do this? What is the name of such a request?
I want to pass id list to mysql and I want it to spit out an identifier that is not in the database yet?
source
share