SQL CREATE SCHEMA

The following command will create a schema named investments.

-- Works in PostgreSQL, MySQL, and SQL Server CREATE SCHEMA investments;

Oracle

Oracle handles users, schemas, and databases differently. Here is a link to Oracle’s explanation of high level objects like schemas, databases, etc