下列是一个例子,一个采用参数的函数使用一个SQL函数执行一个操作,并返回结果:
delimiter //
create function hello (s char(20))
returns char(50)
return concat('hello, ',s,'!');
//
delimiter ;
select hello('world');
+----------------+
| hello('world') |
+----------------+
| hello, world! |
+----------------+