博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小贝_mysql 存储过程
阅读量:6327 次
发布时间:2019-06-22

本文共 733 字,大约阅读时间需要 2 分钟。

存储过程

简要:
1、什么是存储过程
2、使用存储过程

 

一、存储过程

概念类似于函数,就是把一段代码封装起来。当要行这段代码的时候,能够通过调用该存储过程来实现。在封装的语句体里面。能够用if/else,case,while等控制语句能够进行sql编程

二、使用存储过程

2.1、查看现有的存储过程

2.2创建存储过程

a、无參数的存储过程

delimiter //

create procedure p1()

begin

select count(*) from goods;

end //

   

调用存储过程p1()

b、带參数的存储过程(參数用于保存执行结果)

 

delimiter //

create procedure p2(out a int)

begin

select count(*) into a from goods;

end //

delimiter ;

 

调用存储过程p2

(备注: 定义变量a来保持存储过程p2的结果。然后再显示变量a的值)

c、带參数的存储过程(參数用于执行)

delimiter //

create procedure p3(in a int)

begin

select goods_id,goods_name,shop_price from goods where goods_id=a;

end //

delimiter ;

 

 

 

 

 

 

调用存储过程p3

 

d、带有if/else的存储过程

 

调用

 

e、带有while的存储过程

 

2.3、删除存储过程

 

总结: 在mysql中。存储过程和函数的差别

a、名称不同

b、存储过程没有返回值

The quieter you become。the more you are able to hear。

你可能感兴趣的文章
QT-简易视频播放器
查看>>
第一次毕业设计任务书
查看>>
shell脚本编程基础
查看>>
archlinux flash chromium lib path
查看>>
查询指定时间段的数据
查看>>
XenServer 优化
查看>>
mysql中 decimal、numeric数据类型
查看>>
Android 访问网络须知
查看>>
p1341 无序字母对
查看>>
loj10099 矿场搭建
查看>>
JQ 1
查看>>
简单用CreateThread传递自定义参数
查看>>
机器学习资源
查看>>
DJANGO 自定义分页组件
查看>>
【LeetCode每天一题】Convert Sorted Array to Binary Search Tree(根据有序数组构建平衡二叉树)...
查看>>
DES加密系统的实现
查看>>
使用MVC创建API
查看>>
CodeForces Round 521 div3
查看>>
Spring Boot 使用 AOP 实现页面自适应
查看>>
如何检测被锁住的Oracle存储过程及处理办法汇总(转)
查看>>