我想在MySql中创建一个函数,并试图返回更大的值(两个值中的一个)。
在我的代码中,这些值在变量X和Y中,下面是我的代码:

DELIMITER ;;
CREATE FUNCTION getMaxDistanceById(id int(11))
RETURNS INT
BEGIN
DECLARE X INT DEFAULT 0;
DECLARE Y INT DEFAULT 0;

SELECT MAX(distance) INTO X FROM trainings WHERE user_id = id;
SELECT MAX(trainings.distance) INTO Y FROM trainings INNER JOIN attendings ON trainings.tid = attendings.tid WHERE attendings.uid = id;
IF X <= Y THEN
    SET X = Y;
RETURN X;
END
;;

在phpMyAdmin中执行此语句时得到的错误是:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 12

我希望有人知道正确的方法,我将非常感谢分享答案:)

最佳答案

您缺少一个END IF
整个过程可以使用GREATEST简化为一个表达式(它返回最大的参数)。

RETURN GREATEST(
    (SELECT MAX(distance) FROM trainings WHERE user_id = id),
    (SELECT MAX(trainings.distance) FROM trainings INNER JOIN attendings ON trainings.tid = attendings.tid WHERE attendings.uid = id)
);

关于mysql - MySQL函数-使用IF语句获得更大的值(value),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34594659/

10-15 08:43