PostgreSQL provides various functions, such as LOWER(), INITCAP(), or UPPER(), to alter a string to lowercase, proper case, and uppercase, respectively.
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:
- Postgres Support
- PgLTS: Extended Support for EOL Postgres
- Open Source Full Stack Support
- Try the latest PgManage (Open Source) and get rid of PgAdmin!
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 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 …
How To Find and Delete Duplicate Rows in PostgreSQL
In PostgreSQL, we can use the "DELETE USING" statement, subquery, or Postgres immediate table to delete duplicate rows from a table.
How to Use MIN() Function in PostgreSQL
In PostgreSQL, the MIN() function retrieves a set's minimum value. Use the LEAST() function to get the minimum/least value from more than one column
How to Use MAX() Function in PostgreSQL
PostgreSQL offers a built-in MAX() function that is used to retrieve the maximum value of a set. The MAX() function has multiple real-life implementations, such as fetching the highest-paid employee, finding a top-ranked student, and so on. So, let’s learn the working of the MAX() function through Practical examples.
How to Use MAX() Function in Postgres?
The below snippet will show you the basic syntax of the MAX() function:
MAX(exp); …
How to Use AVG() Function in PostgreSQL
In PostgreSQL, the AVG() function is used to retrieve the average of a set. The DISTINCT operator is used with the AVG() function to find the average of distinct values.
PostgreSQL SUM() Function With Practical Examples
The SUM() is used to perform the addition on a set of values. Use the DISTINCT option with the SUM() function to calculate the sum of distinct values.
How to Use COUNT() Function in PostgreSQL
The table rows can be counted using PostgreSQL's COUNT() function. It is an aggregate function that enables us to count the rows that meet the specified condition. There are multiple ways to use the COUNT() function, such as COUNT(*), COUNT(col_name), and COUNT(DISTINCT col_name). Each implementation of the COUNT() function serves a different functionality.
Let’s learn the working of the COUNT() function through Practical examples.
How to Use COUNT(*) Function in …
How to Use the POSITION() Function in PostgreSQL
In PostgreSQL, to get the substring’s location in a string, the POSITION() function is used. It returns an integer that represents the substring’s location.
How to Use NOT IN Operator in PostgreSQL
In PostgreSQL, the NOT IN operator filters the query results and returns all the values of a result set except the specified values.