SET EXACT

From Lianjapedia
Revision as of 06:09, 3 November 2014 by Yvonne.milne (Talk | contribs)

Jump to: navigation, search

Purpose

Determines how comparisons between two character expressions are performed

Syntax

SET EXACT ON | OFF | (<expL>)

See Also

LEFT(), LPAD(), LTRIM(), RIGHT(), RPAD(), RTRIM(), SET STRCOMPARE, SOUNDEX(), SUBSTR(), TRIM()

Description

If SET EXACT is OFF, strings are compared up to the length of the shortest string. If SET EXACT is ON, the strings compared must be an exact match in both characters and length. By default, EXACT is OFF.

Example

set exact off
use patrons index events
// Lists all people beginning with "SMITH"
// SMITH, SMITHWAITE SMITHSON etc.
list all for name = "SMITH"
set exact on
// Lists only those people called "SMITH"
list all for name = "SMITH"