我如何将从选择语句的汇总值设置为mysql自定义函数中的变量

发布于 2025-01-22 07:35:32 字数 458 浏览 0 评论 0原文

我正在尝试使用MySQL中的Select查询结果创建自定义函数。

以下是试图实现的示例自定义功能。当我执行此脚本时,它会在SET语句上抛出SQL错误。请建议如何做到这一点。

我的尝试如下:

DELIMITER //
CREATE FUNCTION get_max(
    salary INT
)
RETURNS INT

BEGIN
DECLARE max_salary INT;
SET max_salary = select MAX(salary) from employee; --statement to check
RETURN max_salary;
END; //
DELIMETER;

在此处输入图像描述

I am trying to create a custom function using the SELECT query result in MySQL.

Below is a sample custom function which am trying to achieve. When I execute this script, it throws SQL error on set statement. Please advise how this can be done.

My attempt is below:

DELIMITER //
CREATE FUNCTION get_max(
    salary INT
)
RETURNS INT

BEGIN
DECLARE max_salary INT;
SET max_salary = select MAX(salary) from employee; --statement to check
RETURN max_salary;
END; //
DELIMETER;

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两人的回忆 2025-01-29 07:35:32

您的功能几乎没有疑问 -

  1. 如果您希望从员工表中获得最高工资,则该功能中不应有输入参数。
  2. 必须将设置替换为in to in ot子句。

因此,正确的语法应为 -

DELIMITER //
CREATE FUNCTION get_max()
RETURNS INT

BEGIN
DECLARE max_salary INT;
SELECT MAX(salary) 
  INTO max_salary
  FROM employee;

RETURN max_salary;

END; 
//
DELIMETER;

There are few concerns in your function -

  1. There should be no input parameter in the function if you want the max salary from the employee table.
  2. SET must be replaced with an INTO clause.

So, The correct syntax should be -

DELIMITER //
CREATE FUNCTION get_max()
RETURNS INT

BEGIN
DECLARE max_salary INT;
SELECT MAX(salary) 
  INTO max_salary
  FROM employee;

RETURN max_salary;

END; 
//
DELIMETER;

Demo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文