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.
SQL_StringEqual(fieldname, stringvalue)
Name | Type | Description |
---|---|---|
fieldname | String | The database field to test. |
stringvalue | String | The string value to compare the field with |
SQL comparison expression.
Type: String.
SQL_StringEqual("MyField", "XYZ")
Result: "MyField='XYZ'"