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.

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() …

Connecting PostgreSQL Using psql and pgAdmin

Installing the PostgreSQL on your machine will also install a couple of very handy tools, such as pgAdmin, and SQL SHELL. pgAdmin is a web-based GUI tool, while psql is a terminal-based tool. Both these tools assist us in working with Postgres.

This write-up will assist the beginners who have installed PostgreSQL on their PCs and are now looking to establish a connection to it. This post will cover the …

PostgreSQL AGE() Function With Examples

The AGE() function takes two timestamps as arguments, subtracts the second timestamp from the first one, and retrieves the resultant interval.

PostgreSQL TO_DATE() Function: Convert String to Date

PostgreSQL provides a built-in function named TO_DATE() that assists us in converting a string into a date. The TO_DATE() function retrieves a date value in “YYYY-MM-DD” format.

PostgreSQL CURRENT_TIMESTAMP VS LOCALTIMESTAMP

In Postgres, the CURRENT_TIMESTAMP retrieves the date and time along with the time zone, while the LOCALTIMESTAMP function retrieves the date and time without the time zone.

PostgreSQL TO_TIMESTAMP() Function With Examples

In PostgreSQL, the TO_TIMESTAMP() is a built-in function that accepts a string and a format and converts the given string to a TIMESTAMP based on the specified format.

PostgreSQL INTERSECT Operator With Examples

In PostgreSQL, the INTERSECT operator combines the result set of at least two queries. The INTERSECT operator retrieves only common records from the targeted tables.

How to Import a CSV File to a PostgreSQL Table

Importing CSV files into Postgres tables or exporting tables from PostgreSQL into CSV files are very common. In PostgreSQL, you can import a CSV file to a table using the \COPY statement(CLI) or pgAdmin(GUI).

In this write-up, we will learn various ways to import a CSV file to a Postgres table. So, let’s begin.

How to Use the \COPY Command in PostgreSQL?

You can use the \COPY statement to import …