摘要:
首先需要下载一个NPOI.dll 下载地址:http://download.csdn.net/detail/president810/9503038using System; using System.Collections.Generic; using System.IO;//引用NPOI using NPOI.HSSF.UserModel; using NPOI.SS.UserModel;... 阅读全文
摘要:
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断<!--more--> select * from people where peopleId in (select peopleId from people group by peopleId having count(p 阅读全文
摘要:
DECLARE My_Cursor CURSOR --定义游标 declare@indexId int FOR (SELECT * FROM dbo.GalleryPhoto) --查出需要的集合放到游标中 OPEN My_Cursor; --打开游标 FETCH NEXT FROM My_Curs 阅读全文