博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单使用游标插入数据
阅读量:6413 次
发布时间:2019-06-23

本文共 838 字,大约阅读时间需要 2 分钟。

--创建数据库

create proc InsertStudent

as

--定义所需要的变量

declare @SchoolID int
declare @ClassID int
declare @StudentID int
declare @IDNumber int  --条件判断时需要

begin

--创建游标

declare FeeInsertStudent cursor for 
select stuID,SchID,ClasID from T_School 

--打开游标

open FeeInsertStudent 

--从游标里取出数据给 变量 赋值

fetch next from FeeInsertStudent into @SchoolID,@ClassID,@StudentID

--判断有标的状态

while @@FETCH_STATUS=0

begin

--为变量赋值

set @IDNumber=(select count(*) from T_LeaveSchool where StudentID=@StudentID and SchoolID=@SchoolID and ClassId=@ClassID)
if(@IDNumber=0)  --判断
begin
insert into T_LeaveSchool(StudentID,ClassID,SchoolID)
values( @StudentID,@ClassID,@StudentID)
end
fetch  next from FeeInsertStudent into @SchoolID,@ClassID,@StudentID
end
close FeeInsertStudent         --关闭游标
deallocate FeeInsertStudent                 --撤销游标


end

转载于:https://www.cnblogs.com/duanlinlin/p/3305476.html

你可能感兴趣的文章
实现loading的代码
查看>>
javascript中关于变量定义及范围
查看>>
MySQL 8.0新特性--skip scan range access method(七)
查看>>
Here Document
查看>>
MySQL高可用性之keepalived+mysql双主
查看>>
LVS类型之NAT
查看>>
SQL SERVER 2005如何建立自动备份的维护计划
查看>>
权限及权限管理
查看>>
linux文件系统
查看>>
ios 笔试题 1
查看>>
ExtJS4.2学习(13)基于表格的扩展插件---rowEditing
查看>>
第六章 大网高级 CBWFQ
查看>>
System.arraycopy()方法详解-jdk1.8
查看>>
mfc添加系统菜单
查看>>
手把手教你搭建LyncServer2013之日常管理命令行全集(十六)
查看>>
Netty Channel
查看>>
RHEL5下构建LAMP+Postfix+Dovecot+SquirrelMail+Extmail+Extman+SpamAssassin防垃圾邮件-下
查看>>
我的友情链接
查看>>
C++特殊函数方法
查看>>
查看网卡速度命令
查看>>