Click or drag to resize
SQL_And

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

The TOPICA Basic function SQL_And is used to combine logical SQL expressions with and "AND" operator.

Syntax
SQL_And(string1, string2, string3, ...)
Parameters

Name

Type

Description

stringN

String

String containing a logical SQL expression, e.g. "SomeField=2".

Returns

SQL comparison expression.

Type: String.

Examples
SQL_And("FieldX=2", "FieldY='yyy'", "FieldZ='zzz'")

Result: "(FieldX=2) AND (FieldY='xxx') AND (FieldZ='zz')".

SQL_And("FieldX=2")

Result: "FieldX=2".