作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我的 mysql 模式中有以下函数,这个函数应该像这样工作:
if (especie=mEspecie && variedad=mVariedad) then
then return precio; else
return 0;
end if;
但不知何故它不起作用,有人可以在这里帮助我吗?
这是我的功能,自@vipin 回答以来我已经更新:
CREATE DEFINER=`root`@`localhost` FUNCTION `BUSCA_PRECIO_MATRIZ`(mEspecie int, mVariedad int) RETURNS int(11)
READS SQL DATA
DETERMINISTIC
BEGIN
declare precio, especie,variedad integer;
declare cur1 cursor for
select ifnull(valor,0),idconf_especie,idconf_variedad from cc_matriz_precios_facturacion_recibidor where idconf_especie=mEspecie and idconf_variedad=mVariedad;
open cur1;
loop_cur : loop
fetch cur1 into precio,especie,variedad;
if(especie = mEspecie) then
if (variedad = mVariedad) then
return variedad;
LEAVE loop_cur;
else
return variedad;
leave loop_cur;
end if;
end if;
end loop;
return 0;
close cur1;
return 0;
END
最佳答案
在我的查询中,如果在检查条件后在 cc_matriz_precios_facturacion_recibidor 表中找到任何数据,则返回 true,否则返回 false
CREATE FUNCTION `BUSCA_PRECIO_MATRIZ`(mEspecie int, mVariedad int) RETURNS int(11)
READS SQL DATA
DETERMINISTIC
BEGIN
declare precio, especie,variedad, flag int;
select valor,idconf_especie,idconf_variedad, 1 into precio, especie,variedad, flag
from cc_matriz_precios_facturacion_recibidor
where idconf_especie=mEspecie and idconf_variedad=mVariedad;
IF(flag) THEN
return 1;
ELSE
return 0;
END IF;
END
或者简而言之
CREATE FUNCTION `BUSCA_PRECIO_MATRIZ`(mEspecie int, mVariedad int) RETURNS int(11)
READS SQL DATA
DETERMINISTIC
BEGIN
declare precio, especie,variedad int;
DECLARE flag int default 0;
select valor,idconf_especie,idconf_variedad, 1 into precio, especie,variedad, flag
from cc_matriz_precios_facturacion_recibidor
where idconf_especie=mEspecie and idconf_variedad=mVariedad;
return flag;
END
关于mysql - 如何在mysql函数中返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36180898/
我是一名优秀的程序员,十分优秀!