、启动:程序/MySQL Server 5.0/MySQL command line client
输入密码登录
2、查询当前有哪些存储过程

mysql>showstatus where db='testTable'

3、创建一个简单的存储过程

mysql>create procedure hello() select 'helloworld';

4、调用存储过程

mysql>call hello();

09-17 20:23