Postgres and Open Source Experts

24x7x365 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 Find Duplicate Rows in PostgreSQL

PostgreSQL offers several built-in functions to find duplicate rows/records from a table, such as ROW_NUMBER() and COUNT().

PostgreSQL ISNULL Function With Examples

PostgreSQL doesn’t support the ISNULL function. To achieve the functionality of the ISNULL function in Postgres, COALESCE function and CASE expressions are used.

How to Use NULLIF Function in PostgreSQL

NULLIF takes some arguments and returns a NULL value if both arguments are equal or if one of them is NULL, and it returns first argument if both arguments are not equal.

PostgreSQL NOT EXISTS Operator With Practical Examples

NOT EXISTS operator negates the working of the EXISTS operator. It returns TRUE if the subquery returns zero rows and FALSE if the subquery returns at least one row.

PostgreSQL EXISTS Operator With Practical Examples

In Postgres, the EXISTS operator takes a subquery as an argument and checks the existence of a record in the subquery. Consequently, it returns true or false.

PostgreSQL Else If Statement With Examples

In Postgres, the ELSIF is one of the decision-driven statements that evaluate several conditions. It checks/evaluates each condition one by one.

PostgreSQL If Else Statement With Examples

In Postgres, the if statement checks a condition/criteria and returns true or false. If statement doesn’t handle the false condition. To handle the false conditions, the else statement is used in PostgreSQL.

PostgreSQL Upsert Using INSERT ON CONFLICT Statement

In PostgreSQL, the upsert feature is used either to update existing records or insert new ones into a table. The upsert feature is implemented using the INSERT ON CONFLICT statement.

PostgreSQL Copy Table With Practical Examples

PostgreSQL allows us to copy an existing table with or without data. In Postgres, either you can copy only the structure of an existing table, or you can copy a table completely along with its data.

PostgreSQL SUBSTRING() Function - How to Extract a Substring From a String

PostgreSQL provides a built-in function named SUBSTRING() that extracts a substring from any specific string. The SUBSTRING() function accepts three parameters: a string, starting position, and length. The starting position” and “length” parameters are optional that can be skipped depending on the situation.

This write-up will present a detailed overview of extracting a substring from a string using the PostgreSQL SUBSTRING() function. So, let's get started.

How to Use SUBSTRING() …