SQL DROP DATABASE

The following command will drop a database called real_estate.

-- Works for PostgreSQL, MySQL, and SQL Server DROP DATABASE real_estate;

Oracle

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