在MySQL中创建带分隔符的存储过程

王林
发布: 2023-09-09 17:57:08
转载
726 人浏览过

在MySQL中创建带分隔符的存储过程

您可以使用create procedure命令创建存储过程。语法如下 −

delimiter //
CREATE PROCEDURE yourStoreProcedureName()
BEGIN
   Declare variable here
   The query statement
END //

delimiter //
登录后复制

将上述语法应用于创建存储过程。查询如下 −

mysql> use test;
Database changed
mysql> delimiter //
mysql> create procedure Sp_callTableStoredProcTable()
   −> begin
   −> select *from StoredProcTable;
   −> end //
Query OK, 0 rows affected (0.54 sec)
登录后复制

Now you need to change the delimiter with ; to call stored procedure −

mysql> delimiter ;
登录后复制

You can call stored procedure using CALL command. The syntax is as follows −

CALL yourStoredProcedureName();
登录后复制

The above stored procedure can be called using CALL command as shown in the below query −

mysql> call Sp_callTableStoredProcTable();
登录后复制

以下是输出 −

+-----------+------+
| FirstName | Age  |
+-----------+------+
| John      | 23   |
| Bob       | 24   |
| David     | 20   |
+-----------+------+
3 rows in set (0.03 sec)

Query OK, 0 rows affected (0.06 sec)
登录后复制

在上面,我们使用了表格 'StoredProcTable',这个表格有三条记录。使用存储过程显示了所有记录。

您可以使用存储过程检查表格中有多少条记录 -

mysql> delimiter //
mysql> create procedure CountingRecords()
   −> begin
   −> select count(*) as AllRecords from StoredProcTable;
   −> end //
Query OK, 0 rows affected (0.19 sec)

mysql> delimiter ;
登录后复制

Call the stored procedure using CALL command. The query is as follows −

mysql> call CountingRecords();
登录后复制

以下输出显示记录的计数 −

+------------+
| AllRecords |
+------------+
|          3 |
+------------+
1 row in set (0.31 sec)

Query OK, 0 rows affected (0.33 sec)
登录后复制

以上是在MySQL中创建带分隔符的存储过程的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!