【发布时间】:2019-04-04 19:24:41
【问题描述】:
mysql存储函数:如何选择多个结果并进行处理。例如,
create function hello() return decimal(10,2) determistic begin
select value1, value2 from Foo;
// process multiple rows in result set here
for (....) {
}
end
【问题讨论】: