Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (152)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (299)

Tag: psql

GREATEST() Function in PostgreSQL

Posted on May 9, 2022 by Ian

In PostgreSQL, the GREATEST() function returns the greatest (or largest) value from a list of any number of expressions.

The GREATEST() function is not included in the SQL standard, but it’s a popular extension that many major RDBMSs support.

Continue reading →
PostgreSQL functions, psql, what is

LEAST() Function in PostgreSQL

Posted on May 8, 2022 by Ian

In PostgreSQL, the LEAST() function returns the smallest value from a list of any number of expressions.

The LEAST() function is not included in the SQL standard, but it’s a popular extension that many major RDBMSs support.

Continue reading →
PostgreSQL functions, psql, what is

How to Convert a Unix Timestamp to a Date/Time Value in PostgreSQL

Posted on May 5, 2022 by Ian

In PostgreSQL, we can use the to_timestamp() function to convert a Unix timestamp value to a date/time value.

The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).

Continue reading →
PostgreSQL dates, how to, psql

Subtract Weeks from a Date in PostgreSQL

Posted on May 2, 2022 by Ian

We can use the - operator to subtract one or more weeks from a date in PostgreSQL.

Continue reading →
PostgreSQL dates, how to, psql

Get the Last Day of the Month in PostgreSQL

Posted on 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.

Continue reading →
PostgreSQL dates, how to, psql

Subtract Months from a Date in PostgreSQL

Posted on April 25, 2022 by Ian

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

Continue reading →
PostgreSQL dates, how to, psql

Return the Unix Timestamp in PostgreSQL

Posted on April 19, 2022April 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.

Continue reading →
PostgreSQL dates, how to, psql

Subtract Minutes from a Time Value in PostgreSQL

Posted on 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.

Continue reading →
PostgreSQL dates, how to, psql

Get the Number of Days in a Month in PostgreSQL

Posted on 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.

Continue reading →
PostgreSQL dates, how to, psql

UPPER() – Convert to Uppercase in PostgreSQL

Posted on 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.

Continue reading →
PostgreSQL functions, how to, psql, what is
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »

About Database.Guide | Privacy Policy