MySQL DELIMITER syntax errors

前端 未结 6 864
长发绾君心
长发绾君心 2020-12-06 10:13

This MySQL script installs multiple triggers.

It works on one machine running MySQL 5.0.51b-community. On another machine running MySQL 14.12 Distrib 5.0.45, for re

6条回答
  •  温柔的废话
    2020-12-06 11:07

    Try

    DELIMITER ;
    

    not

    DELIMITER;
    

    You're actually specifying ; as an argument to the DELIMITER command, so not having the space there may be confusing it.

提交回复
热议问题