Articles → POSTGRESQL → Create A New Database In Postgres Using Psql.Create A New Database In Postgres Using Psql.In this article, we will create a new database in postgres using psql.Create Database We can use the following command to create a new databasecreate database <db_name>;Please note that it is important to add semicolon in the end. Otherwise database will not be created.Posted By - Karan Gupta Posted On - Monday, October 21, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
create database <db_name>;
Query/Feedback