1 用mysql客戶端登入
2 選擇資料庫
mysql>use test
3 查詢當前資料庫有哪些儲存過程
mysql>show procedure status where Db="test"
4 建立一個簡單的儲存過程
mysql>create procedure hi() select "hello";
5 儲存過程建立完畢,看怎麼呼叫它
mysql>call hi();
顯示結果 mysql> call hi();
+-------+
| hello |
1 row in set (0.00 sec) Query OK, 0 rows affected (0.01 sec)
6 一個簡單的儲存過程就成功了
1 用mysql客戶端登入
2 選擇資料庫
mysql>use test
3 查詢當前資料庫有哪些儲存過程
mysql>show procedure status where Db="test"
4 建立一個簡單的儲存過程
mysql>create procedure hi() select "hello";
5 儲存過程建立完畢,看怎麼呼叫它
mysql>call hi();
顯示結果 mysql> call hi();
+-------+
| hello |
+-------+
| hello |
+-------+
1 row in set (0.00 sec) Query OK, 0 rows affected (0.01 sec)
6 一個簡單的儲存過程就成功了