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 Array Length in PostgreSQL?

In Postgres, the ARRAY_LENGTH() is used to find the array's length. The ARRAY_LENGTH() function finds the array’s length based on the requested dimension.

PostgreSQL DROP VIEW IF EXISTS

If a VIEW to be dropped doesn’t exist, then Postgres throws a VIEW doesn’t exist error. To rectify this error, the “IF EXISTS” option is used with the DROP VIEW statement.

VIEWS in PostgreSQL: CREATE VIEW, DROP VIEW, UPDATE VIEW

Postgres provides the “CREATE VIEW”, “CREATE OR REPLACE VIEW”, and “DROP VIEW” statements to create, update or drop a view from the database.

How to Use POWER() Function in PostgreSQL

The POWER() or POW() function accepts two numeric values as arguments and retrieves the first value raised to the power of the second value.

How to Sort Table Data BY Date in PostgreSQL

To sort the table’s data into a specific format, the ORDER BY clause is used in Postgres. Postgres users must use the ORDER BY clause on the DATE type column to sort the table data by date.

Alias in PostgreSQL With Examples

ALIASES are used in Postgres to provide a temporary name to the columns, tables, etc., while executing/writing Postgres queries.

How to Fix Column Does not Exist Exception/Error in PostgreSQL

In Postgres, the “column doesn’t exist” error occurs because of various reasons, such as the searched column doesn’t exist, typo mistakes, column alias being used incorrectly, etc.

How to Define an Auto Increment Primary Key in PostgreSQL

To define an auto-incremented primary key in Postgres, specify a column name followed by a pseudo data type named “SERIAL”, and then specify the PRIMARY KEY keyword.

ARRAY_TO_STRING() Function in PostgreSQL

PostgreSQL offers an ARRAY_TO_STRING() function that accepts three arguments: an array, a delimiter, and a text to replace the null values.

PostgreSQL Pattern Matching: LIKE VS Not LIKE VS ILIKE

The LIKE operator matches the search expression with the specified pattern and retrieves true if the match is found. The NOT LIKE operator negates the results of the LIKE operator,.