11 2017 档案

摘要:SQL重复记录查询方法 2008年08月14日 星期四 21:01 SQL重复记录查询 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people g 阅读全文
posted @ 2017-11-29 18:29 nieweiking 阅读(8040) 评论(0) 推荐(0)
摘要:查询及删除重复记录的SQL语句 查询及删除重复记录的SQL语句 1、查找表中多余的重复记录,重复记录是根据单个字段(Id)来判断 select * from 表 where Id in (select Id from 表 group byId having count(Id) > 1) 2、删除表中 阅读全文
posted @ 2017-11-13 17:27 nieweiking 阅读(165) 评论(0) 推荐(0)
摘要:查询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 阅读全文
posted @ 2017-11-10 17:02 nieweiking 阅读(260) 评论(0) 推荐(0)