标签:
drop procedure if exists p_hello_world; create procedure p_hello_world() begin select sysdate(); end; call p_hello_world();
MySQL PLSQL Demo - 001.创建、调用、删除过程
原文地址:http://www.cnblogs.com/nick-huang/p/4614269.html