F_AGEINWEEKSTHRESHOLD
<< F_AGEINMONTHSTHRESHOLDN | IBExpert UDF Functions | F_AGEINWEEKSTHRESHOLDISO >>
F_AGEINWEEKSTHRESHOLD
- compatibility to FreeUDFLib, FreeUDFLib AvERP
- 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) weeks between timestamp 1 and timestamp 2
Sunday is 1st day of week. If the two dates are in the same week, the return value is 0.
Example
select 2 as ISCORRECT, F_AGEINWEEKSTHRESHOLD('01.01.2018 15:01:21', '15.01.2018 15:01:21', 5, 0, 10, 0) from RDB$DATABASE union select 5 as ISCORRECT, F_AGEINWEEKSTHRESHOLD('01.01.2018 15:01:21', '15.01.2018 15:01:21', 5, 1, 10, 0) from RDB$DATABASE union select 10 as ISCORRECT, F_AGEINWEEKSTHRESHOLD('01.01.2018 15:01:21', '15.05.2018 15:01:21', 5, 0, 10, 1) from RDB$DATABASE union select -33 as ISCORRECT, F_AGEINWEEKSTHRESHOLD('01.01.2019 15:01:21', '15.05.2018 15:01:21', 5, 0, 10, 1) from RDB$DATABASE union select null as ISCORRECT, F_AGEINWEEKSTHRESHOLD(null, null, null, null, null, null) from RDB$DATABASE;
Expected results:
ISCORRECT ============ ============ <null> <null> -33 -33 2 2 5 5 10 10
back to top of page
<< F_AGEINMONTHSTHRESHOLDN | IBExpert UDF Functions | F_AGEINWEEKSTHRESHOLDISO >>