Example of MySQL user-defined function CREATEFUNCTION

Source: Internet
Author: User
Mysqlmysqldelimiter $ inline-(in_stringVARCHAR (255),-inline (20),-inline (20) -- RETURNSVARCHAR (255)-BEGIN-DECLAREl_new_stringVARCHAR (255);-DECLAREl_find_posINT; -- SETl_f

Mysqlmysql delimiter $ mysqlmysql create function myFunction-(in_string VARCHAR (255),-in_find_str VARCHAR (20),-in_repl_str VARCHAR (20) -- returns varchar (255) -BEGIN-DECLARE l_new_string VARCHAR (255);-DECLARE l_find_pos INT; -- SET l_f

mysql>mysql> delimiter $$mysql>mysql> CREATE FUNCTION myFunction-> (in_string VARCHAR(255),-> in_find_str VARCHAR(20),-> in_repl_str VARCHAR(20))->-> RETURNS VARCHAR(255)-> BEGIN-> DECLARE l_new_string VARCHAR(255);-> DECLARE l_find_pos INT;->-> SET l_find_pos=INSTR(in_string,in_find_str);->-> IF (l_find_pos>0) THEN-> SET l_new_string=INSERT(in_string,l_find_pos,LENGTH(in_find_str),in_repl_str);-> ELSE-> SET l_new_string=in_string;-> END IF;-> RETURN(l_new_string);->-> END$$Query OK, 0 rows affected (0.00 sec)mysql>mysql> delimiter ;mysql> select myFunction('ABC','A','Z');+---------------------------+| myFunction('ABC','A','Z') |+---------------------------+| ZBC |+---------------------------+1 row in set (0.00 sec)mysql> drop function myFunction;Query OK, 0 rows affected (0.00 sec)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.