gpt4 book ai didi

mysql - 返回函数中的计数 - Mysql

转载 作者:行者123 更新时间:2023-11-29 12:52:14 25 4
gpt4 key购买 nike

我有一个复杂的 SQL,并希望有一个可以调用的函数来返回行数。

我写了:

BEGIN
declare thetotal INT;
select count(id) AS thetotal from countries where id = countryid;
RETURN thetotal;
END;

但它不会让我从选择中返回。

最佳答案

使用SELECT..INTO相反:

BEGIN
declare thetotal INT;
select count(id) INTO thetotal from countries where id = countryid;
RETURN thetotal;
END;

关于mysql - 返回函数中的计数 - Mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24551279/

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