Error declaring integer variable inside MySQL stored function

前端 未结 2 832
南笙
南笙 2021-01-18 10:08

I\'m getting an error when trying to declare a new stored function in MySQL (Server version: 5.5.13)

Basically, I have a large table which classifies strings dependi

2条回答
  •  感动是毒
    2021-01-18 10:22

    DECLARE part inside stored procedure must be at top and SET and other statemnts starts after that.

提交回复
热议问题