精通
英语
和
开源
,
擅长
开发
与
培训
,
胸怀四海
第一信赖
我的开发平台是workbench,是mysql自己的客户端,英文界面。
19:12:55 CREATE PROCEDURE `new_procedure` (in test varchar(128),in term varchar(12),in runyear int) BEGIN DECLARE sid INT Error Code: 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 0.000 sec
这问题我百度搜索后,理解为分号会影响代码在服务器端的解析,要换个分隔符才行,所以在脚本前面加上:
DELIMITER $$
在脚本最后加上:
DELIMITER ;
这样问题就解决了。
Error Code: 1308. LEAVE with no matching label: read_loop 0.000 sec
Mysql循环可以使用REPEAT,在循环里可以用LEAVE跳出循环,不过循环要用标签来命名,命名语句如下:
exam_loop:REPEAT
如果LEAVE后面带的标识符没定义,则报这样的错误。
Error Code: 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 'ywscore),TS_MinScore = min(TS_MinScore,ywscore) where Stu_Name=s' at line 19 0.000 sec
MIN和MAX是面向列使用的,它不能和变量结合,要和变量结合,要使用:
Stu_MaxScore =GREATEST(Stu_MaxScore,ghyscore),Stu_MinScore = LEAST(Stu_MinScore,ghyscore)
11:33:59 call scorestat('a1','上学期',2017) 0 row(s) affected, 1 warning(s): 1329 No data - zero rows fetched, selected, or processed 1.310 sec这里是指存储过程本身没返回数据,并不是代表就没有影响数据表
代替方法是使用select count(*) into 变量,然后判断变量。