码迷,mamicode.com
首页 > 数据库 > 详细

MySQL存储过程

时间:2014-09-15 13:03:49      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   ar   数据   sp   log   on   c   

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存储过程

标签:blog   http   使用   ar   数据   sp   log   on   c   

原文地址:http://my.oschina.net/chinamummy29/blog/313621

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!