首页 > 代码库 > MySQL存储过程
MySQL存储过程
MySQL存储过程的相关介绍:http://www.cnblogs.com/exmyth/p/3303470.html
获取、修改、删除数据(和普通的sql语句是一样的):
获取数据时,将 id 使用 into 赋值给在存储过程中定义的 newId。
declare newId int default 0; select id into newId from apple where name="smallApple";
批量插入:
BLOCK :BEGIN set insertSql=‘‘; set insertSql=concat(‘insert into tb_new(name,age,size) select name,age,size from tb_old); set @sqlinsert = insertSql; prepare stmtinsert from @sqlinsert; execute stmtinsert; END BLOCK;
MySQL存储过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。