meta data for this page
  •  

F_MINNUM, F_MIN

function from adhoc

input/output-compatibility to rFunc (MINNUM)

compatibility GrUDF

Entrypoint minnum compatible with UTF-8


Inputs/Outputs

   Input      DOUBLE     floatingpoint 1
              DOUBLE     floatingpoint 2
   Output     DOUBLE     the min. of the two  floatingpoints
   

—-

Syntax

   TestSQL
   SELECT 15.345 AS ISCORRECT, F_MINNUM(15.345, 15.346) FROM RDB$DATABASE;
   SELECT 15.345 AS ISCORRECT, F_MIN(15.345, 15.346) FROM RDB$DATABASE;
   SELECT NULL AS ISCORRECT, F_MIN(NULL, NULL) FROM RDB$DATABASE;