摘要:
DECLARE @Id NVARCHAR(MAX) DECLARE @UserName NVARCHAR(MAX) DECLARE @Password NVARCHAR(MAX) DECLARE @NickName NVARCHAR(MAX) create table #tmp (Id NVARCH 阅读全文
摘要:
if exists用法 if exists 判断表中的内容是否存在 IF EXISTS(SELECT 1 FROM proprice_sheet WHERE vndcode = @vndcode AND matcode = @matcode) if exists(select 1 from 表 wh 阅读全文
摘要:
如图,现在有两个数据集,左边表示#tempTable1,右边表示#tempTable2。现在有以下问题: 1.求两个集的交集? 2.求tempTable1中不属于集#tempTable2的集? 先创建两张临时表: 比如,我现在以#tempTable1和#tempTable2的argument1作为参 阅读全文
摘要:
工作中遇到的 update 的更新方法 以前update 表 set 列 = 新值 稍稍进阶 update 表 set 列 = (select 值 from 表 where ...) where .... 分析 这种效率低 , 笛卡尔积设定 消耗io 比较大 now 使用显示关联的方法 update 阅读全文