2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/_psql/databases
2018-01-17 16:13:38 +00:00

6 lines
135 B
Plaintext

-- Create a new database
CREATE DATABASE [IF NOT EXISTS] db_name;
-- Delete a database permanently
DROP DATABASE [IF EXISTS] db_name;