Using Escape Characters - trillium_discovery - trillium_quality - 17.2

Trillium Control Center

Product type
Software
Portfolio
Verify
Product family
Trillium
Product
Trillium > Trillium Quality
Trillium > Trillium Discovery
Version
17.2
Language
English
Product name
Trillium Quality and Discovery
Title
Trillium Control Center
First publish date
2008
Last updated
2024-07-01
Published on
2024-07-01T08:56:48.630530

If you use IF/THEN conditional statements, you must precede nested literal characters with a backslash, referred to as an escape character ( \ ). Adding the backslash ensures the nested literal character is read as part of the string, not the end of the string.

Use the following valid escape characters:

  • \\ = \ (backslash)
  • \t = tab
  • \' = ' (single quote)
Note: To escape a double quote ("), use " " together instead of the backslash. For example, Address IN (""""), using two double quotes within double quotes.