摘要:
SQL重复记录查询方法 2008年08月14日 星期四 21:01 SQL重复记录查询 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people g 阅读全文
摘要:
查询及删除重复记录的SQL语句 查询及删除重复记录的SQL语句 1、查找表中多余的重复记录,重复记录是根据单个字段(Id)来判断 select * from 表 where Id in (select Id from 表 group byId having count(Id) > 1) 2、删除表中 阅读全文
摘要:
查询Oracle 用户下面的所有表,表注释,行数 select t.TABLE_NAME, s.comments,t.NUM_ROWS from user_tables t, user_tab_comments s where t.TABLE_NAME = s.table_name(+) and t 阅读全文
摘要:
Windows Server 2008 DNS服务器安装与配置 原文来自: http://www.cnblogs.com/vipsoft/archive/2012/04/27/2473793.html 本文关键字:Windows Server 2008 DNS.IIS 服务器安装与配置,DNS服务器 阅读全文