Recursion : Introduction : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » Introduction »

 

Recursion


mysql>
Functions and procedures can call themselves.
mysql>
mysql> delimiter $$
mysql> CREATE FUNCTION factorial(n BIGINTRETURNS BIGINT
    -> BEGIN
    ->   IF n>=THEN
    ->     RETURN n * factorial(n-1);
    ->   ELSE
    ->     RETURN n;
    ->   END IF;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql>
mysql> SELECT factorial(3);
ERROR 1424 (HY000): Recursive stored functions and triggers are not allowed.
mysql>
mysql> drop function factorial;
Query OK, rows affected (0.00 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Procedure Function
» Introduction