> Herb 50 HR / Example: Wildcards in an expression

See also

Expressions

Herb 50 HR example: Wildcards in an expression

The following examples use wildcard symbols in the expression that can match any other text.

Variable

Description

vw_company_address.Postcode LIKE "NE%"

Find employees whose post code start with 'NE'.

vw_person.Surname LIKE "%son"

Find employees whose surname ends with 'son'.


Go to top