In PostgreSQL, the log functions are used to find the logarithm of a particular number(provided in the function as a parameter). These functions include: log(), ln(), and log10().
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.
How to Drop an Extension in PostgreSQL
In PostgreSQL, the extensions can be dropped by using the DROP EXTENSION statement which is followed by the name of the extension.
How to Switch User in PostgreSQL
We can switch a user in PostgreSQL by simply executing the SET ROLE command. But the point to be noted is that we can only switch the user if it already exists.
How to Use Generated Columns in PostgreSQL
The generated columns do not have a fixed value; rather this value is automatically computed by the expression that is determined at the time of column definition.
How to Transpose Columns to Rows in PostgreSQL?
In PostgreSQL, the crosstab() function and the unnest() function are used to transpose columns into rows. These functions help us transform the table by returning the transposed table.
How to Select Random Rows in PostgreSQL
To get random rows from a database table, use the RANDOM() function with the ORDER BY clause. We can also specify the limit of the number of rows we want to fetch/retrieve.
Understanding Postgres LCM() and GCD() Functions Using Examples
The lcm() and gcd() functions take two numeric type parameters and return their lowest common factor and the greatest common divisor respectively.
How to Query Data Between Specific Date Ranges in PostgreSQL
To get the data between two specified date ranges, use the “WHERE” and “AND” clauses, the BETWEEN operator, the SYMMETRIC keyword, and the Range data types.
How to Find the Size of a Postgres Tablespace
To find the size of the Postgres Tablespace, use the “pg_tablespace_size” function that takes the tablespace name as an argument and returns its size.
How to Round an Average to 2 Decimal Places in PostgreSQL
To find the average of a column we use the AVG() function taking the name of the column as a parameter. The ROUND() function rounds off a specified number up to particular decimal places.