Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Function Name

Parameters

Description

Example

OR

2 or more boolean expression parameters

Returns true if one or more parameters are true

 

AND

2 or more boolean expression parameters

Returns true if all parameters are true

 

LIKE

2 parameters

Compares a column to a regular expression, using "%" as wild cards

LIKE(BT_CUSTOMERS.BC_CUSTOMERS_CUSTOMERNAME; "%SMITH%")

IN

2 or more parameters

Checks to see if the first parameter is in the following list of parameters

IN(BT_CUSTOMERS.BC_CUSTOMERS_CUSTOMERNAME; "Adam Smith"; "Brian Jones")

NOW

none

The current date

 

DATE

3 numeric parameters, year, month, and day

A specified date

 

DATEVALUE

1 text parameter "year-month-day"

A specified date

 

CASE

2 or more parameters

Evaluates the first, third, etc parameter, and returns the second, fourth, etc parameter value
if there are an odd number of parameters, the last parameter is returned if no other parameter evaluates to true.

 

COALESCE

1 or more parameters

returns the first non null parameter

 

...