、启动:程序/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();