I am working on Standard Access. I wrote this code:
SELECT *
FROM room
WHERE price < 40 AND
type IN ('Double", "Single")
ORDER BY price;
when I run it, it's telling me this message
Syntax error in string in query expression price < 40 AND type IN ('Double", "Single") ORDER BY price;
String literals in SQL are denoted by single quotes, not double quotes: