I have a query that by all rights should not possibly fail, and I can't for the life of me figure out why
INSERT INTO Grocery_Store_Prices(Store,Item,Brand,Price,Unit,Quantity,Note)
VALUES("Kroger","Cheesy Poof","Cartman",0.51,"fart",15,"what is going on");
When I try to run the query I get "Syntax error in INSERT INTO statement" with the Note field highlighted. If I omit the Note field and its value, the query works fine. Is there something really obvious I'm missing, or is there an Jet SQL quirk buried here???
The table it's acting on is: Grocery_Store_Prices
- ID -- autonumber primary key
- Store -- Text
- Date -- Date/Time
- Item -- Text
- Brand -- Text
- Price -- Currency
- Unit -- Text
- Quantity -- Number (double)
- Note -- Text.