zoukankan
html css js c++ java
查询重复记录
if
exists
(
select
*
from
dbo.sysobjects
where
id
=
object_id
(N
'
[dbo].[p_qry]
'
)
and
OBJECTPROPERTY
(id, N
'
IsProcedure
'
)
=
1
)
drop
procedure
[
dbo
]
.
[
p_qry
]
GO
/**/
/*
--查询重复记录的通用存储过程
可以查询出表中那些数据是重复的,这里的重复,是指除主键外重复的记录
如果表中有主键,请指定主键.
如果表中有标识字段,而且标识字段无重复,请在调用时,将主键指定为标识字段
如果标识字段重复,不能用此存储过程
-- 2004.4--
*/
create
proc
p_qry
@tbname
sysname,
--
要查询的表名
@keyfdname
sysname
=
null
--
表中的主键,如果未指定,则表中无主键
as
declare
@nokey
bit
,
@fd
varchar
(
8000
),
@tj
varchar
(
8000
)
set
nocount
on
if
isnull
(
@keyfdname
,
''
)
=
''
begin
select
@keyfdname
=
cast
(
newid
()
as
char
(
36
)),
@nokey
=
1
exec
(
'
alter table [
'
+
@tbname
+
'
] add [
'
+
@keyfdname
+
'
] decimal(38,0) identity(1,1)
'
)
end
select
@fd
=
''
,
@tj
=
''
select
@fd
=
@fd
+
'
,[
'
+
name
+
'
]
'
,
@tj
=
@tj
+
'
[
'
+
name
+
'
]=a.[
'
+
name
+
'
] and
'
from
syscolumns
where
object_name
(id)
=
@tbname
and
name
<>
@keyfdname
set
@fd
=
substring
(
@fd
,
2
,
8000
)
exec
(
'
select
'
+
@fd
+
'
from [
'
+
@tbname
+
'
] a
where exists(select 1 from [
'
+
@tbname
+
'
] where
'
+
@tj
+
'
[
'
+
@keyfdname
+
'
]<>a.[
'
+
@keyfdname
+
'
])
'
)
if
@nokey
=
1
exec
(
'
alter table [
'
+
@tbname
+
'
] drop column [
'
+
@keyfdname
+
'
]
'
)
set
nocount
off
go
--
调用示例
--
创建测试数据
create
table
表(f1
int
,f2
int
,f3
int
,f4
int
,f5
int
)
insert
into
表
select
1
,
1
,
1
,
1
,
1
union
all
select
2
,
1
,
1
,
1
,
1
union
all
select
3
,
2
,
1
,
23
,
1
union
all
select
4
,
2
,
3
,
1
,
3
union
all
select
5
,
1
,
1
,
1
,
1
go
--
调用通用存储过程实现楼主的查询
exec
p_qry
'
表
'
,
'
f1
'
--
删除测试环境
drop
table
表
/**/
/*
--测试结果
f2 f3 f4 f5
----------- ----------- ----------- -----------
1 1 1 1
1 1 1 1
1 1 1 1
--
*/
查看全文
相关阅读:
web前端攻城狮都来晒一晒你的收藏夹吧
淘宝前端技术系列课程分享
HTML5编程实战之二:用动画的形式切换图片
HTML5编程实战之一:HTML5时钟
【转】chrome developer tool 调试技巧
Android 云端推送C2DM php实现向终端推送消息
简单的泰国IP判断
[翻译]延迟着色(Shawn Hargreaves)〔1〕
[翻译]延迟着色(2)
[3D基础]投影矩阵的推导(1)
原文地址:https://www.cnblogs.com/ghd258/p/260769.html
最新文章
C# 去掉HTML标记的正则表达式
vim使用笔记(2): NERDtree插件
试析J2EE与.NET时代的商业利润
Memcache使用基础
《大规模 web服务开发》笔记
3月10日学习小结
开博第一篇
MySQL的正则表达式
Ecshop首页购物车数量调取问题
jQuery总结第一篇
热门文章
关于VIM编码问题的解决
Cron笔记
jsp ftp上传下载实例
C# 3.5新特性整理
SQL的语法和规则
C#XmlDocument,XDocument互换
SQL语句大全
C#调用Java类的方法
生成二维码
HTML5编程实战之三:图片文本(txt)拖拽预览
Copyright © 2011-2022 走看看