meta data for this page
  •  

F_POWER

input/output-compatibility to fbudf (POWER)

input/output-compatibility to rFunc ( POWER)

Entrypoint f_power compatible with UTF-8


Inputs/Outputs

   Input      DOUBLE     number to square
              DOUBLE     exponent
   Output     DOUBLE     square number from parameter 1 exponent parameter 2

Syntax

   TestSQL
   SELECT 8.0 AS ISCORRECT, F_POWER(2, 3) FROM RDB$DATABASE;
   SELECT NULL AS ISCORRECT, F_POWER(NULL, NULL) FROM RDB$DATABASE;