F_MINUTESBETWEEN

<< F_HOURSBETWEEN | IBExpert UDF Functions | F_INDMINUTESBETWEEN >>

F_MINUTESBETWEEN

 
  • compatibility to GrUDF
  • Compatible with UTF-8
  • Input TIMESTAMP (older) date optionally time 1, TIMESTAMP (newer) date optionally time 2
  • Output INTEGER difference in (integer) minutes between timestamp 1 and timestamp 2

Example

 select 3 as ISCORRECT, F_MINUTESBETWEEN('01.10.2018 15:01:03', '01.10.2018 15:04:03')
 from RDB$DATABASE
 union
 select 4 as ISCORRECT, F_MINUTESBETWEEN('01.10.2018 15:05:03', '01.10.2018 15:01:03')
 from RDB$DATABASE
 union
 select null as ISCORRECT, F_MINUTESBETWEEN(null, null)
 from RDB$DATABASE;

Expected results:

    ISCORRECT
 ============ ============
       <null>       <null>
            3            3
            4            4

back to top of page
<< F_HOURSBETWEEN | IBExpert UDF Functions | F_INDMINUTESBETWEEN >>