1、查看是否能建立函數
show variables like '%fun%';
如果為OFF,表示不能建立函數
2、修改資料庫能建立函數
set global log_bin_trust_function_creators = 1;
這樣就修改為ON了,就能建立函數了
create function fun_add(a int,b int) returns int begin return a+b; end; $$;
select fun_add(2,3);
4、調取fun_add函數
drop function if exists fun_add;
5、刪除函數
show create function fun_add;