Click or drag to resize
Quote1

[This is preliminary documentation and is subject to change.]

The TOPICA Basic function Quote1 is used to surround an input string with single quotes ('). Useful for generating SQL string constants.

Syntax
Quote1(stringValue)
Parameters

Name

Type

Description

stringValue

String

The string value to surround with single quotes (').

Returns

Input string surrounded by single quotes (').

Type: String.

Examples
Quote1("abc")

Result: "'abc'"