Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

เราจะเรียกใช้กระบวนงานที่เก็บไว้ของ MySQL ได้อย่างไร


ด้วยความช่วยเหลือของคำสั่ง CALL เราสามารถเรียกใช้กระบวนงานที่เก็บไว้ของ MySQL เพื่อให้เข้าใจว่าเรากำลังเรียกใช้ขั้นตอนการจัดเก็บ allrecords() -

mysql> CALL allrecords();
+------+---------+------------+------------+
| id   | Name    | Address    | Subject    |
+------+---------+------------+------------+
| 100  | Aarav   | Delhi      | Computers  |
| 101  | YashPal | Amritsar   | History    |
| 105  | Gaurav  | Jaipur     | Literature |
| 110  | Rahul   | Chandigarh | History    |
+------+---------+------------+------------+
4 rows in set (0.00 sec)
Query OK, 0 rows affected (0.01 sec)