Conditions on Object Characteristics

Comparisons are done on an alphanumeric basis. For example, 2 is greater than 10 or 02.
Wildcards
In the "like" condition, the "# " symbol matches any number of characters. The "!" is the wildcard that matches one character, and can be repeated. For example:
• #x matches all the values beginning with x.
• #x matches all the values ending with x.
• #x# matches all the values containing x.
• !x# matches all the values that have x as the second character.
• x#x matches all the values beginning and ending with x.
• "!!" matches all the values that have two characters.
Examples:
select Org-Unit where Name = “Account Manager”
select Org-Unit where Name like "#count#"
select Org-Unit where Name like "!!!!!!! Manager#"
select Org-Unit where Name like "Ac#"
select Diagram where Nature null