Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
What's the error you get? – pritaeas Aug 26 '12 at 10:26
unfortuanatley its german: there are no information except a failure occured and the syntax seems to be wrong. – 123ppWeb Aug 26 '12 at 10:30
Just add it. Perhaps your last query does not return a single value? – pritaeas Aug 26 '12 at 10:31
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DECLARE TerminId INT; INSERT INTO Termin(Beginn, Ende, Titel, Ganztaegig, Seri' at line 1 – 123ppWeb Aug 26 '12 at 10:32
when i execute the sql-statement in the consola it works -> 'DISTINCT' ... – 123ppWeb Aug 26 '12 at 10:44
show 1 more comment

migrated from webmasters.stackexchange.com Aug 26 '12 at 19:17

2 Answers

Delete simple quote

  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 having row_number <= 1);
share|improve this answer

Try:

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);

SELECT Distinct Id INTO TerminId FROM Termin where Beginn = BeginnPara and Ende = EndePara and UserId = UserIdPara having row_number <= 1);

Regards.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.