# Operators: HubSpot Domain Operators Lookup-table that translates code values of the domain 'Operators' into descriptions. - Catalog: `HubSpot` - Schema: `CodeValues` - Label: Domain Operators Example: The code value '+' means 'Add numbers or strings'. - Retrieve: True ## View Columns The columns of the view `Operators` are shown below. Each column has an SQL data type. | Name | Data Type | Label | Required | Documentation | |---|:---:|---|:---:|---| | `code` | `varchar2(240)` | Code | ☑ | Unique code within the domain. | | `description` | `varchar2(4000)` | Description | ☐ | Meaning of the unique code within the domain. | | `domain` | `varchar2(240)` | Domain | ☑ | Each domain defines a map of codes to values. | | `resource_code` | `varchar2(240)` | Resource Code | ☐ | Resource code for internationalization. | ## Values | Code | Description | |:---:|---| | `!=` | Checks if a value is not equal to another; supported by both numbers and strings | | `*` | Multiply numbers | | `/` | Divide numbers | | `-` | Subtract numbers | | `+` | Add numbers or strings | | `<` | Checks if a value is less than another; supported by number properties or constants | | `<=` | Checks if a value is less than or equal to another; supported by number properties or constants | | `=` | Checks if a value is equal to another; supported for both numbers and strings | | `>` | Checks if a value is greater than another; supported by number properties or constants | | `>=` | Checks if a value is greater than or equal to another; supported by number properties or constants | | `and` | Checks if both boolean expressions are true | | `equals` | Checks if a value is equal to another; supported by both numbers and strings | | `not` | Negates a boolean expression | | `or` | Checks if either or two values are true |