摘要:
导入maven项目时,pom.xml文件报错如下: Failure to transfer org.apache.maven.plugins:maven resources plugin:pom:2.7 from http://maven.aliyun.com/nexus/content/group 阅读全文
摘要:
1、查找表中多余的重复记录,重复记录是根据单个字段(Id)来判断 select * from 表 where Id in (select Id from 表 group by Id having count(Id) > 1) 2、删除表中多余的重复记录,重复记录是根据单个字段(Id)来判断,只留有r 阅读全文