Versions Compared

Key

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

Learn more about the collection functions EXISTS, EACH, ALL, COLLECT FROM WHERE, COLLECT FROM NAMED WHERE, COLLECT, UNPACK, LIST, SIZE, UNIQUE, SUBSET OF, UNION, INTERSECTION, DIFFERENCE, SYMMETRIC_DIFFERENCE. 

Overview

FunctionDescription
EXISTSDetermines

...

Table of Contents
minLevel2

...

bgColorwhite

EXISTS

...

whether an instance of a specified entity exists, optionally meeting certain criteria

...

Syntax

Code Block
EXISTS instances [ WHERE ( condition ) ]
  • instances - Instances to search.
  • condition - boolean expression that represents the criterion the instance has to meet.

Return type

  • boolean

Examples

Suppose the following data model.

...

typenote

...

.

...

...

bgColorwhite

...

Determines whether all instances of a specified entity meet a certain criteria

...

Syntax

Code Block
EACH instances WHERE ( condition )
  • instances - A collection of instances to search.
  • condition - Boolean expression that represents the criterion the instance has to meet.

Return type

  • boolean

Examples

Suppose the following data model.

...

.

...

 

...

ALLCreates

...

bgColorwhite

ALL

...

a collection of all instances of a specified

...

Syntax

Code Block
 ALL entity
  • entity - Entity of which to collect all its instances.

Return type

...

entity

...

Examples

...

.

...

...

bgColorwhite

...

Creates a collection of entity or attribute instances (meeting certain criteria).

...

typewarning

...

Code Block
 COLLECT entity | attribute FROM collection [ WHERE ( expression ) ]
  • entity or attribute - Entity or attribute to collect.
  • collection - A collection of entity instances.
  • expression - Boolean expression that represents the criterion the instance has to meet.

Return type

  • collection of entity instances
  • collection of attribute values

...

Examples

Suppose the following model. Entity Teacher has a multivalued relation with entity Child via the relation Teacher.teaches_Children.

...

COLLECT Child.name FROM ALL Child
WHERE ( Child.hobbies = "Reading" )

...

...

bgColorwhite

...

...

Version of

...

COLLECT FROM [WHERE]

...

for complex nested selections

...

Syntax

Code Block
 COLLECT entity | attribute FROM collection NAMED alias [ WHERE ( expression ) ]
  • entity or attribute - Entity or attribute to collect. This should contain the alias, e.g. alias.Name.
  • collection - A collection of entity instances.
  • alias - A name for the collection.
  • expression - Boolean expression that represents the criterion the instance has to meet.

Return type

  • collection of entity instances
  • collection of attribute values
UI Text Box
typewarning

A collections contains no duplicates. Intermediary COLLECT expressions can contain duplicates however, please see the note on collections and duplicates.

Examples

Suppose the following model with only instances of entity Person. Person.hasChildren is a relation from Person to Person.

...

To retrieve all the parent names, we use this expression:

Code Block
COLLECT Parent.name 
FROM
  COLLECT Person 
  FROM ALL Person 
  WHERE ( Person.hasChildren != ? ) NAMED Parent

This expression results in “Rick”, “Julia” and “Joan”.

To retrieve all children names, we use this expression:

Code Block
COLLECT Child
FROM (
  COLLECT Person.hasChildren 
  FROM ALL Person 
  WHERE ( Person.hasChildren != ? ) ) NAMED Child

This expression results in a collection of three instances of Person (i.e Person_1, Person_3 and Person_5, with names Kim, Bob and Sam).

To retrieve all children younger than 15, we use this expression:

Code Block
COLLECT Child 
FROM (
  COLLECT Person.hasChildren
  FROM ALL Person 
  WHERE ( Person.hasChildren != ? ) ) NAMED Child
WHERE ( Child.Age < 15 )

...

with

...

To retrieve the children’s names with a parent older than 40 years:

Code Block
COLLECT Child.Name 
FROM (
  COLLECT Person.hasChildren 
  FROM ALL Person 
  WHERE ( Person.hasChildren != ? AND Person.Age > 40 ) ) NAMED Child  

This expression results in a collection with only the name “Kim”.

You can make it as complex as you like, for example:

Code Block
COLLECT Child.Name 
FROM (
  COLLECT Parent.hasChildren
  FROM (
    COLLECT Person
    FROM ALL Person 
    WHERE ( Person.hasChildren != ? ) ) NAMED Parent
  WHERE ( Parent.Age > 40 )
) NAMED Child 
WHERE ( Child.Age < 18 ) 

This expression results also in a collection with only the name “Kim”.

...

typenote

...

an alias

...

.

...

Code Block
thisPerson := Person ;
 
COLLECT Person
    FROM ALL Person 
    WHERE ( Person != thisPerson )

...

bgColorwhite

UNPACK

...

UNPACKExtracts the value from a single valued collection or list.

...

Is the inverse of the LIST function.

...

Code Block
UNPACK ( collection/list )
  • collection/list - A collection or list of one entity or attribute instance.

Return type

  • entity instance
  • attribute value of any type

Examples

Suppose the following data model.

...

  • UNPACK ( COLLECT Person.name FROM ALL Person WHERE ( Person.SequenceNumber = MIN ( COLLECT Person.SequenceNumber FROM ALL Person ) ) ) = “Ron”

  • In case a second entry "Ron","490" exists, the expression UNPACK ( COLLECT Person.name FROM ALL Person WHERE ( Person.SequenceNumber = MIN ( COLLECT Person.SequenceNumber FROM ALL Person ) ) ) will fail, because the UNPACK cannot resolve a list with two elements. To solve this the UNIQUE function has to be used: UNPACK ( UNIQUE ( COLLECT Person.name FROM ALL Person WHERE ( Person.SequenceNumber = MIN ( COLLECT Person.SequenceNumber FROM ALL Person ) ) ) ) = "Ron".
  • UNPACK ( COLLECT Person.name FROM ALL Person WHERE ( Person.SequenceNumber = MAX ( COLLECT Person.SequenceNumber FROM ALL Person ) ) ) = “Jenny”

LISTCreates

...

bgColorwhite

LIST

...

a list based on a value.

...

Is the inverse of the UNPACK function

...

Syntax

Code Block
LIST ( attribute/collection )

...

bgColorwhite

...

This function determines the size of a collection.

Syntax

Code Block
SIZE ( collection )
  • collection - A collection of attribute or entity instances. This can be an expression or a relation attribute for instance.

Return type

  • integer

Example

Suppose you have a Parent and a Child entity, where Parent has a multivalued relation with Child via the relation Parent.has_Children. With this model the following instances are created:

...

Then:

...

UI Text Box
typenote

SIZE and COUNT are similar except for ?:

SIZE ( ? ) results in 0, while COUNT ( ? ) results in ?

...

bgColorwhite

UNIQUE

The UNIQUE function filters duplicate items from a collection. An expression resulting in a collection, never contains duplicate values. A subexpression with the COLLECT statement however, can contain duplicates. See the note on collections and duplicates for more info.

Syntax

Code Block
 UNIQUE ( collection )
  • collection - A collection of attribute or entity instances.

Examples

Suppose the following model.

...

bgColorwhite

...

.

Return type

  • a multivalued list with entries of any type

Examples

...

Suppose the following data model.

...

  • LIST ( COLLECT Person.name FROM ALL Person ) = [ "Bob" , "Jane" , "Mary" , "Rick" , "Ron" , "Jenny" ]
    • In this example the LIST function adds no value, as the result of the COLLECT is already a list.
  • LIST ( COLLECT Person.SequenceNumber FROM ALL Person ) = []
    • As Jenny has an unknown sequence number, the result of the COLLECT expression is ?. The LIST function creates an empty list in case the parameter has ? value.
SIZEDetermines the size of a collection.
UNIQUEFilters duplicate items from a collection resulting from a subexpression in a larger expression.
SUBSET OFReturns
TRUE if the items in a collection are all present in another collection.

...

Syntax

Code Block
 collection1 SUBSET OF collection2
  • collection1 - The collection that is tested to be a subset of the second collection.
  • collection2 - The collection that is tested to hold all the items in the first collection.

Return type

  • boolean

Diagram

Image Removed

Examples

...

...

UI Text Box
typenote
Values between single quotes are considered value list items. For backwards compatibility reasons, a comma separated sequence of value list items is treated as a collection. That's why there is no need to enclose the values between square brackets. In fact if you do add the square brackets you create a matrix rather than a list.

...

bgColorwhite
UNIONAdds two collections of the same base type to a

...

Syntax

Code Block
 UNION ( collection1 , collection2 )

...

collection1 - First collection to be added to the new collection.

...

new collection.

...

Return type

  • collection

Diagram

...

Examples

Suppose you have a Parent and a Child entity, where Parent has a multivalued relation with Child via the relation Parent.has_Children. With this model the following instances are created:

...

INTERSECTIONDetermines

...

bgColorwhite

INTERSECTION

...

the intersection of two collections.

...

Syntax

Code Block
INTERSECTION ( collection1 , collection2 )

...

 

...

Return type

  • collection

Diagram

Image Removed

Examples

Suppose the following model. Entity Teacher has a multivalued relation with entity Child via the relation Teacher.teaches_Children.

...

DIFFERENCEDetermines the difference between 2 collections. Returns

...

bgColorwhite

DIFFERENCE

...

a collection containing all the items from collection1 that are not present in collection2.

...

Syntax

Code Block
DIFFERENCE ( collection1 , collection2 )

...

 

...

Return type

  • collection

Diagram

Image Removed

Examples

...

bgColorwhite

SYMMETRIC DIFFERENCE

...

SYMMETRIC_DIFFERENCEDetermines the symmetric difference between two collections.

...

 Returns a collection with the elements of the provided collections which are in either one of the collections, but not in both.

...

Syntax

Code Block
SYMMETRIC_DIFFERENCE ( collection1 , collection2 )

...

 

...

Return type

  • collection

Diagram

Image Removed

Examples

...

...

bgColorwhite

A note on collections and duplicates

...

An expression resulting in a collection does not contain duplicates. Please be aware however, that intermediary results of a COLLECT statement can contain duplicates. You have to be aware of this when using the SIZE or UNPACK function.

This is best illustrated with the following examples.

...

Now an example with the UNPACK function. We leave out the first instance from the previous example.

...

Functions

Include Page
Collection function EXISTS
Collection function EXISTS


Include Page
Collection function EACH
Collection function EACH


Include Page
Collection function ALL
Collection function ALL


Include Page
Collection function COLLECT FROM WHERE
Collection function COLLECT FROM WHERE


Include Page
Collection function COLLECT FROM NAMED WHERE
Collection function COLLECT FROM NAMED WHERE


Include Page
Collection function UNPACK
Collection function UNPACK


Include Page
Collection function LIST
Collection function LIST


Include Page
Collection function SIZE
Collection function SIZE


Include Page
Collection function UNIQUE
Collection function UNIQUE


Include Page
Collection function SUBSET OF
Collection function SUBSET OF


Include Page
Collection function UNION
Collection function UNION


Include Page
Collection function INTERSECTION
Collection function INTERSECTION


Include Page
Collection function DIFFERENCE
Collection function DIFFERENCE


Include Page
Collection function SYMMETRIC_DIFFERENCE
Collection function SYMMETRIC_DIFFERENCE


Include Page
A note on collections and duplicates
A note on collections and duplicates

...

UI Text Box
typenote

 Only the intermediary results of a COLLECT statement can contain duplicates. The functions UNIQUE, UNION, INTERSECTION, DIFFERENCE and SYMMETRIC_DIFFERENCE always return collections without duplicates.

...