1.

What is the command used for creating a database in PostgreSQL?

Answer»

The first STEP of using POSTGRESQL is to create a database. This is done by using the createdb command as SHOWN below: createdb db_name
After RUNNING the above command, if the database creation was SUCCESSFUL, then the below message is shown:

CREATE DATABASE


Discussion

No Comment Found