InterviewSolution
Saved Bookmarks
| 1. |
How Do You Create A Data Base With Postgresql? |
|
Answer» CREATING a DATABASE is the primary step in creating a database. A command $createdb newdatabasedb CREATE DATABASE This CREATES a new database and a MESSAGE displays CREATE DATABASE which INDICATES that the creation of the database was successful. Creating a database is the primary step in creating a database. A command $createdb newdatabasedb CREATE DATABASE This creates a new database and a message displays CREATE DATABASE which indicates that the creation of the database was successful. |
|