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.

EnterpriseDB (EDB) vs PostgreSQL

Command Prompt understands that sometimes a closed source version of software provides better features than the Open Source counterparts. However, it is Command Prompt’s considerable experience over 25 years of providing expert PostgreSQL professional services and support that there are a minute number of closed source opportunities for PostgreSQL. The ecosystem and community is vibrant and continuing to solve the problems that enterprises face in a collaborative and Open Source way.

How to Insert Multiple Rows to a Table in PostgreSQL

The INSERT INTO statement is used to insert single or multiple rows into a table. To insert multiple rows in a table, the comma-separated syntax is used.

How to Use FETCH Clause in PostgreSQL

PostgreSQL provides a FETCH clause that is used to fetch/retrieve a part of rows returned by any query. It performs the same functionality as the LIMIT clause.

How to Use the Truncate Table Command in PostgreSQL

PostgreSQL provides several methods for truncating a specific table. The TRUNCATE TABLE command is one of them. It can be executed from the psql and pgAdmin.

How to Use BETWEEN Operator in PostgreSQL

In PostgreSQL, the BETWEEN operator is used to find a match against a range of values in SELECT, UPDATE, INSERT or DELETE queries.

How to Use IN Operator in PostgreSQL

In PostgreSQL, the IN operator is used with the collaboration of the WHERE clause to check the existence of a particular value in a list of values.

How to Use HAVING Clause in PostgreSQL

In Postgres, the HAVING clause is mostly used with the GROUP BY clause to filter the group/aggregate based on some specific condition.

How to Use DISTINCT Keyword in PostgreSQL

In PostgreSQL, the DISTINCT keyword/clause is used within the SELECT statement to fetch the unique records from the result-set.

How to Use GROUP BY Clause in PostgreSQL

The GROUP BY clause in PostgreSQL is used with the collaboration of the SELECT statement to group several rows/items.

How to Use ORDER BY Clause in PostgreSQL

In PostgreSQL, specify the ORDER BY clause and column name followed by the ASC or DESC to sort the result set in ascending or descending order, respectively.