mysql函数程序调用,MySQL函数调用

If I call a function several time then will it execute every time or just execute once and the value will be used then after several time?

Example:

select my_function('filed'),my_function('filed')/field2,

(my_function('filed')*field1)/field3,

...... from my_table where group by filed1;

My question is my_function('filed') will be executed once and then the result will be used in my_function('filed')/field2 and (my_function('filed')*field1)/field3 or every time my_function('filed') will be called and executed in system level ?

解决方案

Why not use a variable that catch the value of your function.

For example:

declare var_function (datatype(size)); // just to declare proper data type for your function

set var_function = my_function('filed');

select var_function, var_function/field2,

(var_function*field1)/field3,

....from my_table where group by filed1;

in that case, you'll be going to reuse the function result and no need to repeat the process of the function.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值