delimiter //
create function sf_add(a int,b int) returns int
begin
return a+b;
end
//
mysql>-- 显示创建函数的状态
show function status //

mysql>select sf_add(1,2)

相关文章:

  • 2021-06-21
  • 2021-12-19
  • 2021-10-29
  • 2022-02-16
  • 2021-06-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-23
  • 2022-12-23
  • 2021-04-29
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案