docs/en/14-reference/03-taos-sql/90-escape.md
| Character Sequence | Represents Character |
|---|---|
\' | Single quote ' |
\" | Double quote " |
\n | Newline character |
\r | Carriage return |
\t | Tab character |
\\ | Backslash \ |
\% | % see below for rules |
\_ | _ see below for rules |
% and _ see below), if there is no matching escape character, the escape symbol \ will be ignored (\x remains as is).% and _, since these two characters are wildcards in like, use \% and \_ in pattern matching like to represent the characters % and _ themselves. If \% or \_ are used outside the like pattern matching context, their results are the strings \% and \_, not % and _.