<COL_NAME> = <VALUE> |
This operator returns the rows where the data is equal to a certain value. Note that this operator would not work properly with values of type “double”. For example, if you would like to load the rows where the revenue is 1160.20, which is of type double, it would be impossible to know the exact double value to be matched. |
User = 1 FirstName = "John" Hire_Date = DATE("03/03/2003") |
<COL_NAME> != <VALUE> |
This operator returns the rows where the data is not equal to a certain value. |
User != 1 FirstName != "John" Hire_Date != DATE("03/03/2003") |
<COL_NAME> < <VALUE> |
This operator returns the rows where the data is less than a certain value. |
User < 1 FirstName < "John" Hire_Date < DATE("03/03/2003") |
<COL_NAME> > <VALUE> |
This operator returns the rows where the data is greater than a certain value. |
User > 1 FirstName > "John" Hire_Date > DATE("03/03/2003") |
<COL_NAME> >= <VALUE> |
This operator returns the rows where the data is greater than or equal to a certain value. |
User >= 1 FirstName >= "John" Hire_Date >= DATE("03/03/2003") |
<COL_NAME> <= <VALUE> |
This operator returns the rows where the data is less than or equal to a certain value. |
User <= 1 FirstName <= "John" Hire_Date <= DATE("03/03/2003") |
(<COL_NAME1> + <COL_NAME2>) > <VALUE> |
This operator adds the value of one column to that of another column. Note that the end result of the filter formula should be boolean (i.e. true/ false). This means you would need to compare the addition result to a value. |
(AMOUNT_SOLD + COST_OF_GOODS) >1160.20 |
(<COL_NAME1> - <COL_NAME2>) > <VALUE> |
This operator subtracts the value of one column from that of another column. Note that the end result of the filter formula should be boolean (i.e. true/ false). This means you would need to compare the addition result to a value. |
(AMOUNT_SOLD - COST_OF_GOODS) >1160.20 |
(<COL_NAME1> * <COL_NAME2>) > <VALUE> |
This operator multiplies the value of one column by that of another column. Note that the end result of the filter formula should be boolean (i.e. true/ false). This means you would need to compare the addition result to a value. |
(AMOUNT_SOLD * COST_OF_GOODS) >1160.20 |
(<COL_NAME1> / <COL_NAME2>) > <VALUE> |
This operator divides the value of one column by that of another column. Note that the end result of the filter formula should be boolean (i.e. true/ false). This means you would need to compare the addition result to a value. |
(AMOUNT_SOLD / COST_OF_GOODS) >1160.20 |