作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
delimiter //
create function kill_aliens (rand int)
begin
if rand <= 0.2 and rand >= 0 then
delete from alienkilling limit 2 where dtypeid = 11;
elseif rand <=0.75 and rand > 0.2 then
delete from alienkilling limit 3 where dtypeid = 12;
else rand <=1 and rand >0.75 then
delete from alienkilling limit 1 where dtypeid = 13;
end if; //
它给了我一个语法错误
最佳答案
您的函数定义存在很多问题,让我们列出来:
1 - 您正在创建一个函数,因此它需要一个 returns
声明
2 - 您的删除命令语法错误,limit
应该是最后一个子句(介于两者之间,尽管它有效,但删除中的限制毫无意义)
3 - ELSE
语句没有 THEN
,而且 else
也不接受条件,它应该是另一个 ELSEIF
4 - 如果它是一个函数,您需要返回
某些内容
5 - 您没有使用 end
语句结束函数
所以应该是这样的:
delimiter //
create function kill_aliens (rand int) returns int
begin
if rand <= 0.2 and rand >= 0 then
delete from alienkilling where dtypeid = 11 limit 2;
elseif rand <=0.75 and rand > 0.2 then
delete from alienkilling where dtypeid = 12 limit 3;
elseif rand <=1 and rand >0.75 then
delete from alienkilling where dtypeid = 13 limit 1;
end if;
return 0; -- it must be some value
end //
delimiter ;
旁注:了解如何缩进代码。如果这不会返回任何内容,那么它应该是一个过程而不是函数。
类似于:
delimiter //
create procedure kill_aliens (rand int)
begin
if rand <= 0.2 and rand >= 0 then
delete from alienkilling where dtypeid = 11 limit 2;
elseif rand <=0.75 and rand > 0.2 then
delete from alienkilling where dtypeid = 12 limit 3;
elseif rand <=1 and rand >0.75 then
delete from alienkilling where dtypeid = 13 limit 1;
end if;
end //
delimiter ;
关于mysql - 如何在mysql函数中使用delete语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43246023/
我是一名优秀的程序员,十分优秀!