Experts in Postgres and Open Source Infrastructure

24x7, 365 Enterprise services since 1997

Education

Professional Postgres and Open Source support

Command Prompt, Inc., is the oldest Postgres Company in North America and one of the oldest Open Source firms still operating today. We serve our clients with best in class expertise and professionalism. You can read more about support and services here:


You have landed at the largest single source of Postgres education blogs in the world. At Command Prompt, we believe deeply that the education of the community is critical to the continued success of Postgres and related technologies. We hope you find content you are looking for and don't hesitate to Contact us today for all your Postgres and Open Source consulting and support needs.

How to use the ALTER TABLE command in PostgreSQL

In PostgreSQL, the ALTER TABLE command serves multiple functionalities on a table like adding a column, dropping a column, renaming a table/columns, etc.

How to drop a table in PostgreSQL

To drop/delete a table from the PostgreSQL database, open the SQL SHELL and type the DROP TABLE command followed by the table name.

How to Create PostgreSQL Tables With psql and pgAdmin

In PostgreSQL, a table is used to organize the complex, detailed, and unordered data. A table can be created using the "CREATE TABLE" statement.

How to drop a database in PostgreSQL

Execute the DROP DATABASE command from psql while dropdb command from the command prompt to remove/drop any specific PostgreSQL database.

How to select/access a database in PostgreSQL

There are multiple ways to select or access a PostgreSQL database, such as Command Prompt (cmd), SQL SHELL (psql), and pgAdmin 4.

How to download and install PostgreSQL

Download PostgreSQL “exe” file > open downloaded file > specify installation directory > select components > select directory > set password > and install.

How to Create a Database in PostgreSQL

A Postgres database can be created using “CREATE DATABASE” or “createdb” commands. The difference is that the “createdb” can be executed from the command prompt.

How to Create a Table in PostgreSQL & Perform CRUD Operations

Tables in PostgreSQL can be created following the syntax discussed in the article. You can insert, update, read, and delete data from the table with the help of queries.