I have problems with my first MySQL procedure. I can't find the syntax failure. This is the body of the procedure:
DECLARE TerminId INT;
INSERT INTO `Termin` (`Beginn`, `Ende`, `Titel`, `Ganztaegig`, `Serie`,
`Bemerkung`, `Tooltip`, `Ort`, `Gruppe`, `UserId`)
VALUES (BeginnPara, EndePara, TitelPara, GanztaegigPara, SeriePara,
BemerkungPara, TooltipPara, OrtPara, GruppePara, UserIdPara);
SET TerminId = ( SELECT Distinct Id FROM Termin
where Beginn = BeginnPara
and Ende = EndePara
and UserId = UserIdPara);
