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.

Export a PostgreSQL Table to a CSV File

In PostgreSQL, there are multiple ways to export a table into a CSV file, such as the COPY statement or the \COPY command.

PostgreSQL UNNEST() Function With Examples

PostgreSQL provides a built-in function named UNNEST() that accepts an array as an argument and expands the given array into a set of rows.

PostgreSQL UNIQUE Constraint With Examples

Sometimes we have to store the unique records in a table, such as an email address, employee id, etc. To achieve this purpose, the “UNIQUE” constraint is used in PostgreSQL. The UNIQUE constraint allows us to store the unique rows/records in a table.

This post will explain the working of the UNIQUE constraint through practical examples. So, let’s begin.

How Does UNIQUE Constraint Work in PostgreSQL?

Each time when you …

PostgreSQL CAST Operator- How to Convert One Data Type to Another

PostgreSQL offers a CAST operator that takes an expression and a data type and converts the given expression into the specified data type.

PostgreSQL Drop if Exists VS Drop

The DROP command throws an error if a table to be dropped doesn’t exist while “DROP IF EXISTS” shows a notice instead of throwing an error.

PostgreSQL SELECT DISTINCT Clause With Examples

In Postgres, the SELECT DISTINCT clause fetches only unique values from a result set returned by a query. It retains only one row from a set of duplicated rows.

PostgreSQL COALESCE() Function With Examples

In PostgreSQL, the COALESCE() function handles the null values more efficiently. It accepts unlimited arguments and returns the first non-null argument.

PostgreSQL DATEADD() Equivalent- How to Add Interval to Datetime

PostgreSQL doesn’t provide a DATEADD function to add an interval to date time. However, you can achieve the same functionality using the “+” and “-” operators.

PostgreSQL Letter Case Functions With Practical Examples

PostgreSQL provides various functions, such as LOWER(), INITCAP(), or UPPER(), to alter a string to lowercase, proper case, and uppercase, respectively.

PostgreSQL CURRENT_TIMESTAMP Function With Examples

PostgreSQL offers multiple date/time functions, such as CURRENT_DATE, NOW(), EXTRACT(), CURRENT_TIMESTAMP, etc. If we talk about the CURRENT_TIMESTAMP function, it retrieves the current date, time, and timezone when a transaction starts.

This write-up will present a thorough overview of the Postgres CURRENT_TIMESTAMP function with examples. So, let’s begin.

How to Use CURRENT_TIMESTAMP Function in PostgreSQL?

Firstly, let’s understand the syntax of the CURRENT_TIMESTAMP function:

CURRENT_TIMESTAMP(<precision>);

Here, “precision” is an optional …