PDF (US Ltr) - 180.8Kb
PDF (A4) - 180.7Kb
描述
The film_in_stock
存储过程用于确定给定商店是否有给定电影的任何副本。
参数
p_film_id
: 要检查的电影的 ID,来自film
表的film_id
列。p_store_id
: 要检查的商店的 ID,来自store
表的store_id
列。p_film_count
: 一个OUT
参数,返回库存中电影副本的计数。
返回值
该过程会生成一个包含库存中电影副本的库存 ID 号的表,并返回(在 p_film_count
参数中)指示该表中行数的计数。
示例用法
mysql> CALL film_in_stock(1,1,@count);
+--------------+
| inventory_id |
+--------------+
| 1 |
| 2 |
| 3 |
| 4 |
+--------------+
4 rows in set (0.01 sec)
Query OK, 1 row affected (0.01 sec)
mysql> SELECT @count;
+--------+
| @count |
+--------+
| 4 |
+--------+
1 row in set (0.00 sec)