How do I write an SP in phpMyAdmin (MySQL)?

后端 未结 2 1305
旧巷少年郎
旧巷少年郎 2020-12-02 01:10

How do I write a stored procedure in phpMyAdmin?

相关标签:
2条回答
  • 2020-12-02 01:54

    In phpMyAdmin you can create the stored procedure in the SQL window.

    You may have to set the delimieter to something like "$$" instead of the default ";". You can change this from the bottom of the SQL window.

    0 讨论(0)
  • 2020-12-02 01:54

    Copied from the internets:

    The answer is yes and no. Phpmyadmin has no tools for creating stored procedures but you can enter in SQL using it and in that way create them.

    (Note I don't believe versions prior to MySQL 5 supported stored procedures.)

    0 讨论(0)
提交回复
热议问题