CREATE FOLDER
Create a new folder in your catalog.
SyntaxCREATE FOLDER [ IF NOT EXISTS ] <folder_name>
Parameters
[ IF NOT EXISTS ] Optional
When included, the command runs even if the folder exists and the results indicate that the folder already exists. If this clause is not specified, the command fails if the folder already exists.
<folder_name> String
The name of the folder that you are creating. The name cannot include the following special characters: /, :, [, or ].
Examples
Create a folderCREATE FOLDER myFolder
CREATE FOLDER IF NOT EXISTS myFolder