gpt4 book ai didi

mysql - 如何在mysql函数中使用delete语句

转载 作者:行者123 更新时间:2023-11-29 19:08:59 30 4
gpt4 key购买 nike

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/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com