存储的 FUNCTION 没有在 MySql 中返回结果?
Posted
技术标签:
【中文标题】存储的 FUNCTION 没有在 MySql 中返回结果?【英文标题】:Stored FUNCTION is not returning result in MySql? 【发布时间】:2021-09-04 00:01:56 【问题描述】:我有一个简单的 mysql 查询,它成功返回单个值。
select tl.tour_log_id
from tour_log tl
WHERE tl.log = "SUBTOUR_START"
AND tl.inquiry_id = 7519618
and tl.truck_id = 450 and tl.tour_id = 6174
limit 1; -- tour_log_id -> 736318. Even without limit 1, query gives always single value. This is how database is structured.
但是,我确实有一个 Mysql Stored Function
,它应该做同样的事情,但我得到了 null
。我通过右键单击函数 -> 创建函数来生成此函数。
CREATE DEFINER=`root`@`localhost` FUNCTION `getTourLogIdForSubtourStart`(
inquiryId int, truckId int, tourId int) RETURNS int
DETERMINISTIC
BEGIN
DECLARE tourLogIdSubtourStart int;
DECLARE tourLogIdSubtourEnd int;
select tour_log.tour_log_id into tourLogIdSubtourStart
from fleaty.tour_log tl
WHERE tl.log = "SUBTOUR_START"
AND tl.inquiry_id = inquiryId
and tl.truck_id = truckId and tl.tour_id = tourId
limit 1; --
-- set tourLogIdSubtourEnd = callSomeOtherFunction(tourLogIdSubtourStart, inquiryId, truckId);
-- here will be cursor to process some result set, based on tourLogIdSubtourStart and tourLogIdSubtourEnd
RETURN (tourLogIdSubtourStart);
END
这就是我调用上述函数的方式:
set @s = getTourLogIdForSubtourStart(7519618, 450, 6174);
select @s;
这将打印null
。为什么?
【问题讨论】:
Edit 问题并添加 DDL 和 DML 以及表格的一些示例数据,以便我们可以重现问题。 如您所见,LIMIT 1 在这里很好。但请注意,一般来说,没有 ORDER BY 的 LIMIT 是相当没有意义的 【参考方案1】:简单地说从不使用列名作为变量名
CREATE tABLE tour_log (tour_log_id int, log varchar(19),inquiry_id BIGint,truck_id int, tour_id int)
INSERT INTO tour_log VALUEs (1,'SUBTOUR_START',7519618, 450, 6174)
CREATE FUNCTION `getTourLogIdForSubtourStart`( _inquiryId int, _truckId int, _tourId int) RETURNS int DETERMINISTIC BEGIN DECLARE tourLogIdSubtourStart int; DECLARE tourLogIdSubtourEnd int; select tour_log_id into tourLogIdSubtourStart from tour_log tl WHERE tl.log = "SUBTOUR_START" AND tl.inquiry_id = _inquiryId and tl.truck_id = _truckId and tl.tour_id = _tourId limit 1; -- -- set tourLogIdSubtourEnd = callSomeOtherFunction(tourLogIdSubtourStart, inquiryId, truckId); -- here will be cursor to process some result set, based on tourLogIdSubtourStart and tourLogIdSubtourEnd RETURN (tourLogIdSubtourStart); END
✓ | @s | | -: | | 1 |set @s = getTourLogIdForSubtourStart(7519618, 450, 6174); select @s;
tour_log_id |日志 |查询ID |卡车ID | tour_id ----------: | :------------ | ---------: | --------: | ------: 1 | SUBTOUR_START | 7519618 | 450 | 6174SELECT * FROM tour_log
db小提琴here
【讨论】:
谢谢nbk。这是我的第一个存储函数 :) 我还没有测试过。一旦我这样做,我会upwote ofc。以上是关于存储的 FUNCTION 没有在 MySql 中返回结果?的主要内容,如果未能解决你的问题,请参考以下文章