w3resource

PostgreSQL ISFINITE() function

ISFINITE() function

The PostgreSQL ISFINITE() function is used to test if a date, timestamp, or interval is finite (not +/- infinity).

Uses of ISFINITE() Function
  • Date: Test if a date is finite.

  • Timestamp: Test if a timestamp is finite.

  • Interval: Test if an interval is finite.

Syntax:

isfinite(date)
or
isfinite(timestamp)
or
isfinite(interval)

Return Type: boolean.

PostgreSQL Version: 9.3

Pictorial Presentation of PostgreSQL ISFINITE() function

Pictorial presentation of postgresql ISFINITE function

Example 1: PostgreSQL ISFINITE() function

Code:

SELECT isfinite(date '2002-09-17');

Sample Output:

  isfinite
----------
 t
(1 row)

Example 2: PostgreSQL ISFINITE() function

The isfinite() function is used to get the test for a finite date (not +/-infinity).

Code:

SELECT isfinite(timestamp '2002-09-17 19:27:45');

Sample Output:

 isfinite
----------
 t
(1 row)

Example 3: PostgreSQL ISFINITE() function

This function is used to test for a finite interval.

Code:

SELECT isfinite(interval '7 hours');

Sample Output:

   isfinite
----------
 t
(1 row)

Previous: EXTRACT function
Next: JUSTIFY_DAYS function



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/PostgreSQL/isfinite-function.php