Kann mir jemand einen webbasierten Admin Tool empfehlen,
mit dem man auf eine einfache Art Stored Procedures (SP) anlegen kann.
In meinem PC habe ich sowohl SQLyog als auch phpmyadmin.
Mit SQLyog kann ich einfach SP anlegen, aber den selben Code
akzeptiert phpmyadmin nicht.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10: | DELIMITER $$;
DROP PROCEDURE IF EXISTS `mydb`.`getAllPragraphs4View`$$
CREATE PROCEDURE `getAllPragraphs4View`(IN websiteId integer, IN countryId integer)
BEGIN
SELECT * FROM myuser;
END$$
DELIMITER ;$$ |
Fehler:
#1064 - 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 'DELIMITER $$' at line 1