For example, to determine the total amount spent on parts and labor for a pipe repair project, use the expression: PIPE_PARTS_COST + PIPE_LABOR_COST
For example, to find buildings whose assessed value is $100,000 or more, use the expression: VALUE >= 100000
For example, to find only buildings that have a value for the TERMINATION_DATE property, use the expression: NOT TERMINATION_DATE NULL
Precede every operator with a property. For example, to find buildings whose creation date is after 1990 and before 2005, use the expression: CREATION_DATE > 1990 AND CREATION_DATE < 2005
Math operators perform arithmetic functions. For example, to round the bank width value for water features up to the next whole number and then find water features whose rounded bank width is more than 4 feet, use the expression: Ceil(BANK_WIDTH) > 4
Numeric functions operate on properties whose values are numbers. For example, to round the height of buildings down to the nearest lower whole number and then find buildings whose rounded height is less than 8 feet, use the expression: Floor(ROOF_HEIGHT) < 8
Text functions operate on textual values. For example, to convert pipe names to all uppercase letters, use the expression: Upper(NAME)
Date functions operate on date values. For example, to add one month to the start date for a project, use the expression: AddMonths(START_DATE, 1)
Geometric functions may include Area, Length2D, M, X, Y, and Z (depending on the data source). For example, to find buildings whose area is greater than 10,000 square feet, select the Buildings feature class and use the expression: Area2D(GEOMETRY) > 10000
Conversion functions change values. For example, to display “None” if the property USE_TYPE is null, use the expression: NullValue(USE_TYPE, 'None')