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.

PostgreSQL json_extract_path() Vs json_extract_path_text() - What's the Difference

The Postgres json_extract_path() function and json_extract_path_text() function both are JSON functions that are used to extract the nested values from JSON values specified at a certain path.

Postgres Drop Function If Exists

In PostgreSQL, the DROP and DROP IF EXISTS statements are used to delete any existing database object. We can drop a database, table, column, function, any extension, etc. in Postgres by using the DROP or DROP IF EXISTS statements. These statements do the same job of dropping an object but they also have a difference in their working. We will specifically talk about the DROP FUNCTION IF EXISTS statement.

The …

How to Extract First N or Last N Characters From a Column in PostgreSQL

We can extract the first and last n characters from a table column and use them as per our needs. This can be done by utilizing the LEFT() and RIGHT() functions of PostgreSQL.

How to Use inet_client_port() and inet_server_port() Functions in Postgres

The inet_client_port() function gives the IP port number of the current client and the inet_server_port() function returns the IP port number of the server

How to Drop a Tablespace in PostgreSQL

To drop a tablespace in Postgres, execute the DROP TABLESPACE statement followed by the name of the tablespace to be discarded.

How to Alter a Tablespace in PostgreSQL

To alter a tablespace in PostgreSQL, the “ALTER TABLESPACE” statement is used with “RENAME TO”, “OWNER TO”, and “SET” clauses.

How to Log Queries in PostgreSQL

To log queries in Postgres, first, locate the config file, then locate the data directory path. After that, configure the configurations and direct the output to the log file.

PostgreSQL UPDATE Vs. UPDATE...FROM - What's the Difference

The UPDATE statement updates the table's data with the new values provided in the query. While the UPDATE FROM statement updates a table's data in accordance with the values of the other table.

How to Write Case-Insensitive Queries in PostgreSQL

There are four methods to write the case-insensitive matching in PostgreSQL. Those are CITEXT extension, LOWER() function, ILIKE operator, and Case conversion.

How to Connect to PostgreSQL From Visual Studio Code

To Connect to PostgreSQL From VS Code, launch the VS Code, press “CTRL + Shift + X” to open the Extensions view, select the “PostgreSQL” extension, and Install” it.