jjames
Programmer
- Mar 13, 2001
- 212
I am having a problem with the following Update query
INSERT INTO MyTable (Field1, Field2, Field3)
VALUES('Data1', 'Data2','Data3')
WHERE 'Data1' NOT IN (SELECT Field1 FROM MyTable)
It seems to expect a FROM clause but the data I want to insert does not come from a table, query, etc.
INSERT INTO MyTable (Field1, Field2, Field3)
VALUES('Data1', 'Data2','Data3')
WHERE 'Data1' NOT IN (SELECT Field1 FROM MyTable)
It seems to expect a FROM clause but the data I want to insert does not come from a table, query, etc.