I have an access request that would suggest checking if an item exists in the database before inserting it:
INSERT INTO FinalizedPrintedStickers Values('0000846043-481-9-0', '48IG - 1F Straight Panel ', '481 ', '0', '0', '', '210', 'Printed') WHERE NOT EXISTS(SELECT [SN] FROM FinalizedPrintedStickers Where SN = '0000846043-481-9-0')
Now I got this error earlier, but usually it is when there is no table, for example, if you "select * from the test table" and you type "Select" and leave the from clause, you will get the same error. But do I have a table? Maybe mine, where there is no syntax, is wrong?

Edit:
Ok, I added the "Double" table, as suggested with a copy of the code inserted from this question: UNION query without tables in MS Access (Jet / ACE)
Trying to add a restriction, as shown, gave me this error: 
after I click OK, it highlights the word "Check"
I have never encountered restrictions (access at least ..) my syntax is probably incorrect
Edit 2:
Adding Constraints Using the ctrl G Command

And when I press enter ...

Adding Constraints Using ADO:

And when I click run ...
