version 3
CREATE EMPTY SET ({table; }set)
| Parameter | Type | Description | |
| table | Table | Table for which to create an empty set, or | |
| Default table, if omitted | |||
| set | String | Name of the new empty set |
Description
CREATE EMPTY SET creates a new empty set, set, for table. 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