Skip to main content

Or

Syntax

Select field_name
operator value
Or
Select field_name
operator value

Parameters

None.

Description

Combines consecutive Select criteria so a record may match either connected condition.

Remarks

See Select and And.

And / Or logic

  • And connects two selection criteria where both conditions must hold.
  • Or connects two criteria where either condition can hold.
  • You can have a series of Or commands followed by a series of And commands, but not the other way around.

Examples

Select SEX
= F
Or
Select SEX
= M