1. 함수 생성 가능 여부 확인
show variables like '%fun%';
OFF인 경우 해당 함수 생성 불가
2. 그리고 함수를 생성할 수 있습니다
set global log_bin_trust_function_creators = 1;
이런 식으로 ON으로 변경하면 함수를 생성할 수 있습니다
3. 저장 프로시저 생성과 유사)
create function fun_add(a int,b int) returns int begin return a+b; end; $$;
4. fun_add 함수 호출
select fun_add(2,3);
5. >
drop function if exists fun_add;
show create function fun_add;