DROP DATABASE
DATABASE SCHEMA
DATABASE
andSCHEMA
mean the same thing, either of them can be used.RESTRICT
CASCADE
If specified, will drop all the associated tables and functions.
CREATE DATABASE inventory_db COMMENT 'This database is used to maintain Inventory';
DROP DATABASE IF EXISTS inventory_db CASCADE;