Click or drag to resize
SQL_StringEqual

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

The TOPICA Basic function SQL_StringEqual is used generate an SQL-snippet to compare a field in the datase to a given string value.

Syntax
SQL_StringEqual(fieldname, stringvalue)
Parameters

Name

Type

Description

fieldname

String

The database field to test.

stringvalue

String

The string value to compare the field with

Returns

SQL comparison expression.

Type: String.

Examples
SQL_StringEqual("MyField", "XYZ")

Result: "MyField='XYZ'"