码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程

时间:2020-02-19 00:34:27      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:font   存储过程   返回   call   HERE   16px   class   and   roc   

一、无参存储过程

delimiter //
create procedure p1() 
BEGIN
    select * from db7.teacher;  # 写sql语句
END //
delimiter ;

# MySQL中调用
call p1();

#Python中调用
cursor.callproc(p1)  # 执行sql语句
print(cursor.fetchall()) # 打印结果

 

二、有参存储过程

delimiter //
create procedure p2(in n1 int,in n2 int,out res int)
BEGIN
    select * from db7.teacher where tid >n1 and tid < n2;
    set res = 1;
END //
delimiter ;


# MySQL中调用
set @x=0
call p2(2,4,@x);
select @x;  # 查看返回值

 

存储过程

标签:font   存储过程   返回   call   HERE   16px   class   and   roc   

原文地址:https://www.cnblogs.com/nanjo4373977/p/12329331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!