Skip to content

Database.Guide

PostgreSQL

Get the Last Day of the Month in PostgreSQL

April 29, 2022 by Ian

We can use the following technique in PostgreSQL to return the last day of a given month.

This could be the last day of the current month, or the last day of the month based on a date that we specify.

Read more

Categories PostgreSQL Tags dates, how to, psql

Return Non-Numeric Values from a PostgreSQL Database Column

April 28, 2022 by Ian

The following PostgreSQL examples return only those rows that don’t have a numeric value in a given column.

Read more

Categories PostgreSQL Tags how to

7 Ways to Find Duplicate Rows in PostgreSQL while Ignoring the Primary Key

July 23, 2023April 27, 2022 by Ian

Here are seven ways to return duplicate rows in PostgreSQL when those rows have a primary key or other unique identifier column.

This means that the duplicate rows share exactly the same values across all columns with the exception of their primary key/unique ID column.

Read more

Categories PostgreSQL Tags how to, window functions

Subtract Months from a Date in PostgreSQL

April 25, 2022 by Ian

In PostgreSQL, we can use the - operator to subtract one or more months from a date.

Read more

Categories PostgreSQL Tags dates, how to, psql

Return the Unix Timestamp in PostgreSQL

April 19, 2022 by Ian

In PostgreSQL, we can use the extract() function along with the epoch argument to return the Unix timestamp.

We can return the Unix timestamp based on the current date/time, or we can get it based on another specified date/time.

Read more

Categories PostgreSQL Tags dates, how to, psql

Fix “INSERT has more expressions than target columns” in PostgreSQL

April 17, 2022 by Ian

If you encounter an error that reads “INSERT has more expressions than target columns” when trying to insert data in Postgres, it’s because you’re trying to insert data into more columns than the table actually contains.

Read more

Categories PostgreSQL Tags errors, how to

Subtract Minutes from a Time Value in PostgreSQL

April 16, 2022 by Ian

In PostgreSQL, we can use the - operator to subtract one or more minutes from a time value.

By “time” value, this could be an actual time value, a timestamp, or an interval. We can also subtract minutes from a date value or a date and time combination.

Read more

Categories PostgreSQL Tags dates, how to, psql

Get the Number of Days in a Month in PostgreSQL

April 12, 2022 by Ian

Here’s an example of using PostgreSQL to return the number of days in a month, based on a given date.

Read more

Categories PostgreSQL Tags dates, how to, psql

UPPER() – Convert to Uppercase in PostgreSQL

April 11, 2022 by Ian

In PostgreSQL, we can use the upper() function to convert lowercase characters to their uppercase equivalent, according to the rules of the database’s locale.

Read more

Categories PostgreSQL Tags functions, how to, psql, what is

LOWER() – Convert to Lowercase in PostgreSQL

April 11, 2022 by Ian

In PostgreSQL, we can use the lower() function to convert uppercase characters to their lowercase equivalent, according to the rules of the database’s locale.

Read more

Categories PostgreSQL Tags functions, how to, psql, what is
Older posts
Newer posts
← Previous Page1 … Page27 Page28 Page29 … Page49 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved