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 Describe Database Objects in PostgreSQL From psql

In Postgres, the meta-commands like “\d”, “\dt”, “\dv”, “\ds”, and “\df” are used to describe relations, tables, views, sequences, and functions, respectively.

How to Create Database Objects in PostgreSQL Using CREATE Command

A database object is an entity defined in a database and is used to store or reference data. In Postgres, database objects are created using the CREATE command.

How to Use ARRAY_UPPER() Function in PostgreSQL

The ARRAY_UPPER() function in PostgreSQL returns the upper bound of the array dimension or the highest index of an array.

How to convert JSONB to a record using jsonb_to_record in PostgreSQL

The Postgres jsonb_to_record() function takes a top-level JSONB object, converts it into a table record/row, and returns it.

PostgreSQL json_populate_record() Function

The json_populate_record() function in Postgres converts the JSON object into a data row. It populates the table record from the JSON object.

How jsonb_object_keys() Function Works in PostgreSQL

The JSONB object is provided to the jsonb_object_keys() function as an argument and it returns a column containing all the keys present in that particular JSONB object.

What is the Use of the jsonb_pretty Function in PostgreSQL?

The jsonb_pretty() function returns the beautified version of the provided JSONB value. This function applies proper formatting to the given value.

Understanding Postgres jsonb_insert() Function With Examples

The jsonb_insert() function inserts a new JSONB value into an already existing JSONB object at a specific location. It takes in 3 parameters essentially and 1 parameter optionally.

How to Use to_ascii() Function in PostgreSQL

The to_ascii() function in PostgreSQL converts the provided string from any valid encoding to the ASCII encoding.

PostgreSQL trim_scale() Function

The trim_scale() function takes in a value of a numeric data type and returns the number after trimming zeros from the decimal part of the given numeric value.