content/shared/influxql-v3-reference/quoting.md
InfluxQL supports both single and double quotation marks, but they each function differently and serve different purposes.
Use single quotation marks (') in the
string literal and
timestamp literal syntax.
In the following example, the WHERE clause evaluates the value of the room tag.
Tags only contain string values, so the right operand of the predicate expression
should be a string literal.
... WHERE room = 'Kitchen'
Use double quotation marks (") to quote identifiers.
Identifiers must be double-quoted in the following cases:
[a-z,A-Z,0-9,_].Double-quoted identifiers can also:
" characters (for example: \").While not always necessary, we recommend that you double quote identifiers.
[!Important] InfluxQL quoting guidelines differ from line protocol quoting guidelines.