F_WEEKSBETWEEN
<< F_MONTHSBETWEEN | IBExpert UDF Functions | F_WEEKSBETWEENISO >>
F_WEEKSBETWEEN
- 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) 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_WEEKSBETWEEN('01.10.2018 15:01:03', '15.10.2018 15:01:03')
from RDB$DATABASE
union
select 1 as ISCORRECT, F_WEEKSBETWEEN('11.10.2018 15:01:03', '01.10.2018 15:01:03')
from RDB$DATABASE
union
select null as ISCORRECT, F_WEEKSBETWEEN(null, null)
from RDB$DATABASE;
Expected results:
ISCORRECT
============ ============
<null> <null>
1 1
2 2
back to top of page
<< F_MONTHSBETWEEN | IBExpert UDF Functions | F_WEEKSBETWEENISO >>







