Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何MYSQL WORKBENCH在存储过程中声明和设置变量?
MYSQL WORKBENCH
它给出了一个语法错误,就像unexpected Declare_sym在第一行带有十字符号一样。
unexpected Declare_sym
我正在使用以下代码:
Declare StartDate datetime set StartDate = '2013-07-01';
经过一番谷歌搜索,我得到了答案。
语句必须Declare介于Begin和End语句之间。此外,它必须是语句之后的第一个Begin语句。
Declare
Begin
End
我从这个美妙的网站得到了答案。