在 MySQL 中仅使用一次存储过程调用就能在两个表中插入值


以下列出了使用存储过程在两个表中插入值的语法 −

DELIMITER //
CREATE PROCEDURE yourProcedureName(anyVariableName int)
   BEGIN
   insert into yourTableName1(yourColumnName1) values(yourVariableName);
   insert into yourTableName2(yourColumnName2) values(yourVariableName);
   END
//

首先让我们创建一个表 −

mysql> create table DemoTable1
   -> (
   -> StudentScore int
   -> );
Query OK, 0 rows affected (0.58 sec)

以下是第二个表 −

mysql> create table DemoTable2
   -> (
   -> PlayerScore int
   -> );
Query OK, 0 rows affected (0.52 sec)

以下是对两个表创建存储过程并插入值的查询 −

mysql> DELIMITER //
mysql> CREATE PROCEDURE insert_proc(value int )
   -> BEGIN
   -> insert into DemoTable1(StudentScore) values(value);
   -> insert into DemoTable2(PlayerScore) values(value);
   -> END
-> //
Query OK, 0 rows affected (0.16 sec)
mysql> DELIMITER ;

现在你可以使用 CALL 命令调用存储过程 −

mysql> call insert_proc(89);
Query OK, 1 row affected (0.29 sec)

使用 select 语句显示两个表中的所有记录 −

mysql> select * from DemoTable1333;
+--------------+
| StudentScore |
+--------------+
|           89 |
+--------------+
1 row in set (0.00 sec)
mysql> select * from DemoTable1334;
+-------------+
| PlayerScore |
+-------------+
|          89 |
+-------------+
1 row in set (0.00 sec)

更新于: 05-11-2019

1K+ 浏览量

开启你的 职业生涯

完成课程获得认证

开始
广告