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 Order by Count in PostgreSQL?

In PostgreSQL, the ORDER BY clause is used along with the COUNT() function to retrieve the table’s records by count/quantity.

How to Declare a Variable in PostgreSQL

In Postgres, a variable is declared with a particular data type, such as INTEGER, TEXT, DATE, etc. To declare a variable, use the “DECLARE var_name data_type:= expression;” syntax.

How to Get a Date Greater Than Today in PostgreSQL?

In PostgreSQL, comparison operators like greater than “>” and greater than or equal to “>=” can be used with the “CURRENT_DATE” function to get a date greater than or equal to today.

Postgres Conference, PostgresConf and PgConf

In the past Postgres Conference has gone by many names including, Postgres Conference, PostgresConf, PgConf.US and PgConf.Org. These are all the same organizations they all refer back to https://postgresconf.org, e.g; Postgres Conference now.

How to Copy a Table From One Database to Another in PostgreSQL

To copy a table from one database to another, open CMD as an administrator, and run the "pg_dump -U user –t table source_db | psql -U user target_db" command.

How to Install pgAdmin on Ubuntu

To install pgAdmin on Ubuntu, add the public key using Curl, add the pgAdmin repository using sudo, and execute the “sudo apt install pgAdmin4” command.

How to Check PostgreSQL Service Status in Linux(Ubuntu)

Execute the “sudo systemctl status postgresql” command to check the PostgreSQL service status on your Linux (Ubuntu) operating system.

How to Check Query History in PostgreSQL?

Run the “\s” command from psql to get query history. To check the query history using pgAdmin, open the “query tool” and navigate to the “Query History” tab.

How to Modify an Array Using Built-in Functions in PostgreSQL

Postgres offers different built-in array functions that are used with the UPDATE command to modify an array, such as ARRAY_PREPEND(), ARRAY_REMOVE(), ARRAY_CAT(), etc.

PostgreSQL INNER JOIN Explained With Examples

In PostgreSQL, the INNER JOIN is used to get the matching results from two or more tables based on a specific join condition.