access.logical.connectives

Modifier/Access: Verbs, Releases: AP and R83

Boolean operators used in selection clauses.

Description

a brief discussion of the boolean operators 'and' and 'or' as used in access selection clauses.

Logical connectives are boolean operators used to connect two or more selection criteria clauses in an Access sentence.

When two clauses are connected with an 'or', either clause may be true for data to be selected for processing:

... with city 'richmond' or with state 'ca'

When an 'and' clause connects two clauses, both clauses have to be true for data to be affected:

... with city 'richmond' and with state 'ca'

When the connective between two clauses is omitted, the default connective is an 'or':

... with city 'richmond' with state 'ca'

The 'and' clauses take precedence over 'or' clauses, and a maximum of nine 'and' clauses may be specified.

See Also

Command Name Type Description
access.connectives Definition words in a master dictionary which are used to form the elements of Access statements.
access.with Modifier Defines selection criteria in Access sentence.
access.or Modifier 'or' (Boolean) operator.
access.and Modifier 'and' (Boolean) operator.
access.sellist Definition Defines selection criteria portion of an Access sentence.

User Comments

What do you think?

Share your experience or ask a question by using the form below.

Login to leave your comments.