利用存储过程把两个表的数据插入到一个新表中(存储过程中写两个游标)
CREATE PROCEDURE [dbo].[GetAllStuClickTime]
@stime nvarchar(20),--开始时间@etime nvarchar(20)--结束时间
--时间为第一个循环体 以这个时间段为范围
AS
BEGIN
declare @days int
declare @datediff int
declare @datetime datetime
declare @count INT
declare @classID nvarchar(50)
declare @people nvarchar(20)--学生卡号
declare @type nvarchar(50)--打卡类型
declare @typeValue nvarchar(50)--打卡类型Value值
set datefirst 1
set @count = 0
set @days = 0
set @datediff = datediff(day,@stime,@etime)
while @days <= @datediff --为天数(第几天第几天)
begin
set @datetime = dateadd(day,@days,@stime)
--第二个循环取出学生表中的学生姓名,班级编号
--新建游标declare StuClickTime cursor for select ClassName,TTCard from dbo.vw_StudentInfo
--打开游标
open StuClickTime
--从游标里取出数据给 变量 赋值
fetch next from StuClickTime into @classID,@people
begin
--判断游标的状态
-- 0 fetch语句成功
-- -1 fetch语句失败或此行不在结果集中
-- -2被提取的行不存在
while @@fetch_status = 0
begin
--第三个循环体,将每个学生的每个类型循环
--新建游标
declare StuClickTimeTyp cursor for select PBC_Name,PBC_Value from TB_Code where PBC_Node=48
--打开游标
open StuClickTimeTyp
--从游标里取出数据给 变量 赋值
fetch next from StuClickTimeTyp into @type,@typeValue
begin
--判断游标的状态
-- 0 fetch语句成功
-- -1 fetch语句失败或此行不在结果集中
-- -2被提取的行不存在
while @@fetch_status = 0
begin
--判断新表中是否存在此条循环出来的数据
set @count = (select isnull(count(*),0) from dbo.Sm_CheckInout where UserID=@people and resultType=@type and ClockTime=@datetime )
if(@count = 0)begin
insert into Sm_CheckInout(ClassID,UserID,resultType,ClockTime,resultTypeValue) values(@classID,@people,@type,@datetime,@typeValue)
end--用游标去取下一条记录
fetch next from StuClickTimeTyp into @type,@typeValue
end
end
--关闭游标
close StuClickTimeTyp
--撤销游标
deallocate StuClickTimeTyp
--用游标去取下一条记录
fetch next from StuClickTime into @classID,@people
end
end
--关闭游标
close StuClickTime
--撤销游标
deallocate StuClickTime
set @days = @days + 1 --循环完了一天然后加一
end
END
>更多相关文章
- 11-06Hadoop是目前大数据领域最主流的一套技术体系
- 11-06大数据和人工智能:三个真实世界的用例
- 11-06为什么说,大数据与行业专家是“共生”关系?
- 11-06Python数据可视化:箱线图多种库画法
- 11-06这种思路讲解HDFS你肯定没见过?快速入门Hadoop必备
- 11-06媲美Pandas的数据分析工具包Datatable
首页推荐
佛山市东联科技有限公司一直秉承“一切以用户价值为依归
- 01-11全球最受赞誉公司揭晓:苹果连续九年第一
- 12-09罗伯特·莫里斯:让黑客真正变黑
- 12-09谁闯入了中国网络?揭秘美国绝密黑客小组TA
- 12-09警示:iOS6 惊现“闪退”BUG
- 12-05亚马逊推出新一代基础模型 任意模态生成大模
- 12-05OpenAI拓展欧洲业务 将在苏黎世设立办公室
- 12-05微软质疑美国联邦贸易委员会泄露信息 督促其
- 12-05联交所取消宝宝树上市地位 宝宝树:不会对公
- 12-04企业微信致歉:文档打开异常已完成修复
相关文章
24小时热门资讯
24小时回复排行
热门推荐
最新资讯
操作系统
黑客防御