Skip to main content
Version: Next

CREATE EMPTY SET

CREATE EMPTY SET ( {aTable ;} set )

ParameterTypeDescription
aTableTable🡒Table for which to create an empty set, or Default table, if omitted
setString🡒Name of the new empty set

Description

CREATE EMPTY SET creates a new empty set, set, for aTable. You can add records to this set with the ADD TO SET command. If a set with the same name already exists, the existing set is cleared by the new set.

Note: You do not need to use CREATE EMPTY SET before using CREATE SET.

Example

Please refer to the examples of the Sets section.

See also

CLEAR SET
CREATE SET