;CREATE TABLE TabTest ( `id` INT(11) NOT NULL AUTO_INCREMENT ,`factorA` VARCHAR(255) NOT NULL DEFAULT ' ' ,`factorB` VARCHAR(255) NOT NULL DEFAULT ' '...
分类:
数据库 时间:
2015-07-23 21:11:24
阅读次数:
158
1.重复记录可由单个字段来辨别出:id为1和id为6的姓名一样select * from student where name in (select name from student group by name having COUNT(name)>1)in操作符:允许在where子句中规定多个值...
分类:
数据库 时间:
2015-07-13 17:49:30
阅读次数:
146
select * from hengtu_demandpush a where (a.did,a.mid) in (select did,mid from hengtu_demandpush group by did,mid having count(*) > 1) 或select * from h...
分类:
数据库 时间:
2015-07-10 13:04:13
阅读次数:
156
参考?http://www.cnblogs.com/chy1000/archive/2010/03/02/1676282.html DELETE?FROM?student
WHERE?sname??IN?
(SELECT??a.sname??FROM??(SELECT?tmp.*?FROM?student?tmp)a??GROUP??BY??...
分类:
其他好文 时间:
2015-07-09 16:24:03
阅读次数:
122
高性能的SQL语句能提高页面的执行效率,让你的服务器运行的更为流畅,所以大家在以后的使用过程中,尽量的考虑到效率。(1)整合简单,无关联的数据库访问:如果你有几个简单的数据库查询语句,你可以把它们整合到一个查询中(即使它们之间没有关系)(2)删除重复记录:最高效的删..
分类:
数据库 时间:
2015-07-07 19:45:46
阅读次数:
208
查找数据库中重复数据T-SQL查找数据库中重复数据T-SQL========第一篇=========在一张表中某个字段下面有重复记录,有很多方法,但是有一个方法,是比较高效的,如下语句:select data_guid from adam_entity_datas a where a.rowid >...
分类:
数据库 时间:
2015-06-29 19:20:13
阅读次数:
206
先创建表
createtablecat
(catIdint,
catNamevarchar(10))
添加数据
insertintocatvalues(1,aa)重复添加
selectdistinct*intotempfromcat
deletefromcat
insertintocatfromtemp
droptabletemp
分类:
数据库 时间:
2015-06-28 12:53:18
阅读次数:
138
SELECT *FROM t_info aWHERE ((SELECT COUNT(*) FROM t_info WHERE Title = a.Title) > 1)ORDER BY Title DESC一。查找重复记录1。查找全部重复记录Select * From 表 Where 重复字段 In...
分类:
数据库 时间:
2015-06-25 16:55:26
阅读次数:
116
来自:http://blog.csdn.net/chinmo/article/details/21840201、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleIdfrom...
分类:
数据库 时间:
2015-06-17 14:51:26
阅读次数:
129
一.查找重复记录 1.查找全部重复记录Select * From表Where重复字段In (Select重复字段From表Group By重复字段Having Count(*)>1) 2.过滤重复记录(只显示一条)Select * From HZT Where ID In (Select Max.....
分类:
数据库 时间:
2015-06-17 13:20:43
阅读次数:
142