摘要:
原文:https://www.jianshu.com/p/ff16a7da6de0 1、vs添加类库,编写如下代码,生成dll 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using Syste 阅读全文
摘要:
原始数据: 期望数据: 1 IF OBJECT_ID('temp_20170701','u') IS NOT NULL DROP TABLE temp_20170701 2 3 CREATE TABLE temp_20170701 ( 4 ID INT PRIMARY KEY IDENTITY(1, 阅读全文
摘要:
1、删除完全重复数据 原始数据: 期望数据: delete result from (select ROW_NUMBER () over(partition by id order by id) r, * from temp_0814 t ) result where result.r!=1 2、删 阅读全文