This section describes the DDL commands pertaining to modules.
Create a new module.
CREATE MODULE name [ IF NOT EXISTS ];
There’s a corresponding SDL declaration for a module, although in SDL a module declaration is likely to also include that module’s content.
CREATE MODULE
defines a new module for the current database. The
name of the new module must be distinct from any existing module in
the current database. Unlike SDL module declaration the CREATE MODULE
command does not have
sub-commands, as module contents are created separately.