博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MsSql 游标 修改字段两个表关联 表向另个表插入记录
阅读量:5217 次
发布时间:2019-06-14

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

-- 方法1:游标-- 声明变量DECLARE@SystemUserId AS UNIQUEIDENTIFIER-- 声明游标DECLARE C_SystemUser CURSOR FAST_FORWARD FORSELECT SystemUserId FROM Quotation.dbo.SystemUser WHERE SystemUserNo NOT IN ('beijing','dicai','admin','test') ;OPEN C_SystemUser;-- 取第一条记录FETCH NEXT FROM C_SystemUser INTO @SystemUserId;WHILE @@FETCH_STATUS=0BEGIN-- 操作INSERT INTO Quotation.dbo.SystemUserRole(SystemUserId,SystemRoleId) VALUES(@SystemUserId,'549F845D-0F84-4422-9625-BFA2703288DD')-- 取下一条记录FETCH NEXT FROM C_SystemUser INTO @SystemUserId;END-- 关闭游标CLOSE C_SystemUser;-- 释放游标DEALLOCATE C_SystemUser; --修改字段两个表关联UPDATE a SET a.Password=b.PasswordFROM  a inner join  b on a.SystemUserNo=b.SystemUserNo where a.SystemUserNo!='admin'一个表向另一个表插入记录假如a表存在,则insert into A(a,b,c) select a,b,c from B假如A表不存在,则select a,b,c into A from B --新增表字段if not exists(select * from syscolumns where id=object_id('Provider') and name='Creater')beginalter table Provider add Creater uniqueidentifier null END--添加给字段 默认值ALTER TABLE [dbo].[QuotationFille] ADD CONSTRAINT [DF_QuotationFille_Status] DEFAULT ((0)) FOR [Status]ALTER TABLE [dbo].[QuotationFille] ADD CONSTRAINT [DF_QuotationFille_CreatedOn] DEFAULT (getdate()) FOR [CreatedOn]

 

转载于:https://www.cnblogs.com/chxl800/p/10498535.html

你可能感兴趣的文章
新的开始
查看>>
java Facade模式
查看>>
模板的继承和导入 、自定义函数
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
SpringAop与AspectJ
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
关于MFC中窗口的销毁
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>