F_AGEINMINUTESTHRESHOLD
<< F_AGEINHOURSTHRESHOLDN | IBExpert UDF Functions | F_AGEINMINUTESTHRESHOLDN >>
F_AGEINMINUTESTHRESHOLD
- function from adhoc
- Compatible with UTF-8
- Input TIMESTAMP (older) date optionally time 1, TIMESTAMP (newer) date optionally time 2, INTEGER min. value, INTEGER min. value is used (0 = no, 1 = yes), INTEGER max. value, INTEGER max. value is used (0 = no, 1 = yes)
- Output INTEGER difference in (integer) minutes between timestamp 1 and timestamp 2
Example
select 14 as ISCORRECT, F_AGEINMINUTESTHRESHOLD('01.10.2018 15:01:03', '01.10.2018 15:15:03', 5, 0, 10, 0) from RDB$DATABASE union select null as ISCORRECT, F_AGEINMINUTESTHRESHOLD(null, null, null, null, null, null) from RDB$DATABASE;
Expected results:
ISCORRECT ============ ============ <null> <null> 14 14
back to top of page
<< F_AGEINHOURSTHRESHOLDN | IBExpert UDF Functions | F_AGEINMINUTESTHRESHOLDN >>