定义函数
drop function if exists hello;
DELIMITER $$ -- 固定格式,操作开始
create function hello ()
returns varchar (255)
begin
return 'hello word';
END$$ -- 固定格式,操作开始
测试函数
select hello();
drop function if exists hello;
DELIMITER $$ -- 固定格式,操作开始
create function hello ()
returns varchar (255)
begin
return 'hello word';
END$$ -- 固定格式,操作开始
测试函数
select hello();