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.

Citus Configuration for PostgreSQL sharding

Welcome back to our Citus blog series! Previously, we introduced Citus, reviewed use cases, reviewed Citus structure, and installed Citus alongside PostgreSQL 14. This post will focus on configuring settings to make sure Citus is communicating between all instances.

How to Get Day Names in PostgreSQL

To extract the day name from a specific date, you need to pass the date/timestamp as a first argument and a valid day format as the second argument to the “TO_CHAR()” function.

PostgreSQL ORDER BY RANDOM

In PostgreSQL, the ORDER BY clause is used with the RANDOM() function to get the random data from large tables.

PostgreSQL ARRAY_AGG() Function With Examples

The ARRAY_AGG() function in Postgres is an aggregate function that takes a column as input and returns an array of values from all the rows in the specified group.

PostgreSQL TIMEZONE | Explained With Examples

In Postgres, a time zone represents a region of the earth with a uniform standard time. Time zones allow us to convert local time to UTC or vice versa.

How to Get the Current Date and Time With Time Zone in PostgreSQL

In Postgres, the NOW() and CURRENT_TIMESTAMP functions are used to fetch the current date and time with the time zone offset.

How to Get the Current Time Without Time Zone in PostgreSQL

Postgres offers a DateTime function named LOCALTIME that retrieves the current time without a timezone. It may or may not accept an optional argument named “precision”.

ILIKE Operator: Case-Insensitive Pattern Matching in PostgreSQL

In Postgres, the ILIKE operator performs the case-insensitive pattern matching on a string. Two wildcards are used to specify a pattern in ILIKE operator: an underscore “_” and a percent sign “%”.

How to Get the Current Date in PostgreSQL

PostgreSQL provides a Date function named CURRENT_DATE, which retrieves the current/today’s date. It retrieves the date in “YYYY-MM-DD” format.

How to Get the Current Time With Timezone in PostgreSQL

PostgreSQL provides a built-in DateTime function named CURRENT_TIME that retrieves the current time with time zone offset.