Home > Database > Mysql Tutorial > body text

(ZZ)phpMyAdmin设置mysql存储过程及其有关问题

WBOY
Release: 2016-06-07 16:23:55
Original
981 people have browsed it

(ZZ)phpMyAdmin设置mysql存储过程及其问题 ? ? ?这几天需要用到数据库,使用的是MySQL,数据库管理软件使用的是phpMyAdmin,要创建一个存储过程,就需要执行一个SQL语句,语句如下,结果报错了,报错如下: “#1064 - You have an error in your SQL syntax;

(ZZ)phpMyAdmin设置mysql存储过程及其问题

? ? ?这几天需要用到数据库,使用的是MySQL,数据库管理软件使用的是phpMyAdmin,要创建一个存储过程,就需要执行一个SQL语句,语句如下,结果报错了,报错如下:

“#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3 ”

后来上网查,才发现原来是个经典错误,现在记录如下,免得以后再遇到:

?

解决方法:

? ? ? ?首先确定不是SQL语句的问题,如果是语句的问题,那就得自己改改了,如果语句正确,那么可如下纠正:

? ? ? ? 1、听说以正确的SQL语句在命令行输入就可以正常执行,在phpMyAdmin里面就出错;这个方法我没试,感兴趣的可以验证以下;

? ? ? ? 2、主要就是在输入SQL语句的时候,phpMyAdmin默认的分隔符为";"(分号),而要改为"//"(双斜杠)。

如下图就会报错:


改为如下图就正确了:


? ? ? ? 这里主要的问题就是体现在分隔符上了,在命令行输入的时候就不会遇到这个问题了,这也就解释了为什么方法1理论也是可行的。呵呵,个人猜测的解释,欢迎知道的人留言指导一下。

?

? ? ? ?关于这个问题,在鼎鼎有名的StackOverFlow网站也有相关帖子,感兴趣的可以移步看之:

#1064 - You have an error in your SQL syntax

?

查看存储过程

? ? ? ? 再来说一下怎么在phpMyAdmin中查看创建的存储过程可以执行如下语句查看创建的存储过程:

show procedure status;

我执行后的效果如下图:

转载自http://blog.csdn.net/chenlong12580/article/details/7514960

?

?

?

?

?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template