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