摘要:
SQL重复记录查询的几种方法 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 复制代码 代码如下: select * from peoplewhere peopleId in (select peopleId from people group by peopleId 阅读全文
摘要:
System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(“文件夹路径”); //FileInfo[]是对系统文档操作的一个类FileInfo[] ff = di.GetFiles("*.txt");//只取文本文档string ss = "" 阅读全文