mysql创建一个简单的存储过程

发布时间:2019-08-31编辑:脚本学堂
创建一个简单的存储过程,熟悉create procedure的用法。

创建一个简单的存储过程,熟悉create procedure的用法。

1、启动:
程序/mysql Server 5.0/MySQL command line client
输入密码登录

2、查询当前数据库有哪些存储过程
 

复制代码 代码如下:
mysql>showprocedurestatus where db='testTable'

3、创建一个简单的存储过程
 

复制代码 代码如下:
mysql>create procedure hello() select 'helloworld';

4、调用存储过程
 

复制代码 代码如下:
mysql>call hello();