gpt4 book ai didi

MySQL 存储过程 if 语句

转载 作者:行者123 更新时间:2023-11-29 00:50:45 24 4
gpt4 key购买 nike

DECLARE vote_id INT;
select id from votes where votes.question_id = question_id and vote_type_id = 3 into vote_id;

if vote_id is null then
...do A
else
...do B
end if;

条件应为真并执行代码的A部分但总是执行B部分。
如何在 if 语句中使用 select?非常感谢。

最佳答案

尝试 select id from votes where votes.question_id = question_id and votes.vote_type_id = 3 into vote_id;

关于MySQL 存储过程 if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8654098/

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