SQL,缺少结束,但为什么?

时间:2015-06-18 13:43:12

标签: mysql stored-procedures

我的SQL过程存在问题。 MySQLWorkbench告诉我它错过了我的第一个SET的“结束”,但不是第二个。我不知道为什么。

DELIMITER $
drop procedure if exists pay10percent$
create procedure pay10percent(IN montant decimal(9,2),IN idResa INT(5))
begin
declare circuitid INT;
SET circuitid = (
            SELECT IDCIRCUIT  
            FROM RESERVATION 
            WHERE IDRESERVATION=idResa
            );
declare montantCircuit decimal(9,2);
SET montantCircuit = (SELECT PRIX FROM CIRCUIT WHERE IDCIRCUIT=circuitid);
end;
$
DELIMITER ;

感谢。

1 个答案:

答案 0 :(得分:4)

您必须在使用SET之前声明所有变量。或者,您可以删除SET并将该子查询用作默认值:

declare circuitid INT DEFAULT (
    SELECT IDCIRCUIT  
    FROM RESERVATION 
    WHERE IDRESERVATION=idResa
);