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

Mysql存储过程查询结果赋值到变量

时间:2019-01-18 12:15:12      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:cat   default   localhost   mysql   int   efi   creat   efault   其他   

# 使用的navicat  编辑的存储过程

CREATE DEFINER=`root`@`localhost` PROCEDURE `insert_student_back`()
BEGIN
#定义max变量
DECLARE max INT DEFAULT 0;
select max(id) into max from student_back;

#判断是不是空值 是空值就赋值为0
if max is null then
  set max = 0;
end if;

#备份数据

INSERT INTO student_back () SELECT * from student where id > max limit 10;
select max(id) into max from student_register_back;

#返回值

select max;


END

#结束
其他方法:

-- 方式 1
DECLARE cnt INT DEFAULT 0;
select count(*) into cnt from test_tbl;
select cnt;

-- 方式 2
set @cnt = (select count(*) from test_tbl);
select @cnt;

 

-- 方式 3
select count(*) into @cnt1 from test_tbl;
select @cnt1;

 

-- 多个列的情况下似乎只能用 into 方式

select max(status), avg(status) into @max, @avg from test_tbl;

select @max, @avg;



Mysql存储过程查询结果赋值到变量

标签:cat   default   localhost   mysql   int   efi   creat   efault   其他   

原文地址:https://www.cnblogs.com/code-bugs/p/10286589.html

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