InterviewSolution
Saved Bookmarks
| 1. |
How can you delete a database in PostgreSQL? |
|
Answer» This can be done by using the DROP DATABASE command as shown in the SYNTAX below: DROP DATABASE database_name;If the database has been deleted successfully, then the following message would be shown: DROP DATABASE |
|