MySQL存储过程简单记录

1. 基本格式 html drop procedure if exists p_test; create procedure p_test(in id int, out name VARCHAR(100)) BEGIN select id; select uname into name from t_user where uid = id; end;  drop ...  create..
相关文章
相关标签/搜索