SQL Operators
Use a number of operators, such as "LIKE," "IN," and multiple comparative operators when you perform a SQL Where Clause lookup.
When you combine fields from the same grid where some of the operators are "not" type operators, the SQL Where Clause will only be built correctly when the "not" type operators follow the non "not" type operators.
Operator | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Comparative |
|
||||||||||||||
Comparative operators are used in WHERE clauses to select contracts based on numeric or character values. For example, the following WHERE clause, in which the comparative operator is >, searches for all contracts where the contract number is greater than 97000.00: ( PROJ.prProject>’97000.00’) WHERE clauses are not case-sensitive. For example, you can enter APPLE or apple or Apple as a value, and the WHERE clause will find any possible upper- or lower-case combination of that name. You can use the following comparative operators in a WHERE clause: |
|||||||||||||||
LIKE | LIKE compares a string of characters.
When you use the LIKE operator, you can use wildcard characters rather than enter the entire value. GovWin Capture Management automatically adds a % to the end of every character string. For the LIKE operator, you can use the % and _ (underscore) wildcard characters.
For example, if you want contracts and tasks for all customer names ending in CH, you can enter % CH in the Value field. The WHERE clause retrieves all contracts whose customer name ends with CH. In the following WHERE clause, LIKE ’r; apple%’ searches for all contracts where the capture manager’s name starts with the letters Apple: ( PROJ.prProjMgr LIKE ’r; apple%’) |
||||||||||||||
IN | Use the IN operator when you are looking for information contained in a group of values. | ||||||||||||||
AND OR | The logical operators AND and OR combine multiple conditions in a WHERE clause.
For example, you can query for all contracts WHERE the capture manager is LIKE Apple AND the customer number is 1234: ( PROJ.prProjMgr LIKE ’r; APPLE%’) AND ( PROJ.prClient=’1234’) This clause retrieves all contracts for customer 1234 for which Apple is the capture manager. The following WHERE clause retrieves all tasks for contracts that have Apple as the manager of the contract, and any other specific tasks that have Apple as the manager of the task: ( PROJ.prProjMgr LIKE ’r; APPLE%’) OR ( TASK.prProjMgr LIKE ’r; APPLE%’) |