STRING
type
Applies to: Databricks SQL
Databricks Runtime
The type supports character sequences of any length greater or equal to 0.
Literals
[r|R]'c [ ... ]'
r
orR
Applies to:
Databricks SQL
Databricks Runtime 10.0 and above
Optional prefix denoting a raw-literal.
c
Any character from the Unicode character set.
Unless the string is prefixed with r
, use \
to escape special characters (e.g. '
or \
).
If the string is prefixed with r
there is no escape character.
You can use double quotes ("
) instead of single quotes ('
) to delimit a string literal.