数据库-mysql储存过程

Posted 狼来的日子里!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库-mysql储存过程相关的知识,希望对你有一定的参考价值。

存储过程是一个SQL语句集合,当主动去调用存储过程时,其中内部的SQL语句会按照逻辑执行。

一:创建存储过程

  

MariaDB [test2]> delimiter //
MariaDB [test2]> create procedure p1() #创建存储过程
    -> begin select * from a;
    -> end //
Query OK, 0 rows affected (0.00 sec)

MariaDB [test2]> call p1()            #调用存储过程
    -> ;
    -> //
+------+
| name |
+------+
|    1 |
|    2 |
|    3 |
|    4 |
+------+
4 rows in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

MariaDB [test2]> 

 

以上是关于数据库-mysql储存过程的主要内容,如果未能解决你的问题,请参考以下文章

mysql为四个表创建储存过程或者储存函数

数据库-mysql储存过程

Mysql储存过程4:mysql变量设置

navicat for mysql 下测试储存过程

Mysql储存过程1: 设置结束符与储存过程创建

创建MYSQL的储存过程