作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的Mysql代码,它给出了一个 语法错误意外 Declare_sym
delimiter @
create procedure StudentUpsert
(in in_regno int ,
in in_fNM varchar(50),
in in_mNM varchar(50),
in in_lNM varchar(50),
begin
declare regno_Count int ;
select Count(*) into regno_Count
fro students_info
if regno_Count > 0 then
update students_info
set firstname = in_fNM,
middlename = in_mNM,
lastname = in_lNM,
where regno = in_regno ;
else
insert into students_info
values (in_regno , in_fNM , in_mNM ,in_lNM );
end if ;
end @
delimiter ;
call StudentUpsert(9, 'ABC','NA','XYZ');
请帮忙 语法错误意外 Declare_sym
最佳答案
我在您发布的查询中没有看到任何 Declare_sym
,但您的 SQL 代码确实存在语法错误,如下所示。不确定这些是否只是发布问题时的错字
select Count(*) into regno_Count
fro students_info
^...... should be *from*
update students_info
set firstname = in_fNM,
middlename = in_mNM,
lastname = in_lNM, <----- remove this extra *,* here
where regno = in_regno ;
将您的程序主体更改为如下所示
delimiter @
create procedure StudentUpsert
(in in_regno int ,
in in_fNM varchar(50),
in in_mNM varchar(50),
in in_lNM varchar(50))
begin
declare regno_Count int ;
select Count(*) into regno_Count
from students_info;
if regno_Count > 0 then
update students_info
set firstname = in_fNM,
middlename = in_mNM,
lastname = in_lNM
where regno = in_regno ;
else
insert into students_info
values (in_regno , in_fNM , in_mNM , in_lNM);
end if;
end@
关于mysql - 语法错误,意外的 Declare_sym,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31638050/
这是我的Mysql代码,它给出了一个 语法错误意外 Declare_sym delimiter @ create procedure StudentUpsert (in in_regno
我是一名优秀的程序员,十分优秀!