- Categories:
PERIOD_ RDIFF¶
Returns the portion of the first PERIOD that lies after the second PERIOD ends, or NULL when there is no such remainder.
- See also:
Syntax¶
Arguments¶
period1The PERIOD value to subtract from.
period2The PERIOD value that may cut the left side of
period1. Must have the same element type.
Returns¶
A PERIOD value of the same element type, or NULL.
Usage notes¶
- Returns
[PERIOD_END(period2), PERIOD_END(period1))whenPERIOD_BEGIN(period1) < PERIOD_END(period2) < PERIOD_END(period1). - Otherwise returns NULL (for example, when the second period does not end inside the first).
Examples¶
This example returns the portion of the first period after the second ends. When the second period doesn’t end inside the first, the function returns NULL: