摘要: 存储过程: create procedure proc_t(out uname varchar(50),out upwd varchar(50),in uid int) BEGIN select name,pwd into uname,upwd from bbs where id=uid; end ---------- 如何在mysql里调用这个存储过程获得uname,upwd的值答案call p... 阅读全文
posted @ 2014-03-29 17:03 梨花驿路 阅读(5816) 评论(1) 推荐(0)