mysql DECLARE WHILE outside stored procedure how?

后端 未结 1 556
慢半拍i
慢半拍i 2020-11-30 12:17

I fairly new to mysql but have MS SQL experience.

Is it possible to declare variables and use while statement outside store

相关标签:
1条回答
  • 2020-11-30 13:03

    No, you cannot do it. You can use these statements only inside BEGIN...END clause.

    So, it is possible in stored procedures/functions, triggers and events.

    More information here - MySQL Compound-Statement Syntax.

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