CREATE DATABASE in PostgreSQL
CREATE DATABASE Creating a database using command: Syntax: CREATE DATABASE name; Parameters: name: It is used to specify the name of the database to be created. Example: CREATE DATABASE students;CREATE DATABASE students; Explanation: A new database will be created with the name ‘students’. Creating a database using UI: Go to start menu. Click on the … Read more