本文介绍了是否可以在存储过程中打印变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在存储过程中打印变量。我在下面添加我的代码
Is it possible print a variable in stored procedure.I am adding my code below
create procedure dist_profit_pairs1(IN user_id varchar(20),IN plan varchar(20))
begin
DECLARE left_bvs,right_bvs Float DEFAULT 0;
SELECT sum(businessvalues)as left_bvs from bv_history where userid=user_id and type='Distribution Profit' and position='Left';
SELECT sum(businessvalues)as right_bvs from bv_history where userid=user_id and type='Distribution Profit' and position='Right';
IF left_bvs < right_bvs THEN
SELECT left_bvs;
ELSE
SELECT right_bvs;
推荐答案
这篇关于是否可以在存储过程中打印变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!