Sqlserver 插入一条记录时,不重复插入的办法

阻止插入一条记录时重复插入

代码
insert into 
[Catchpage].[dbo].[gdlmo_yq]([title],[PageUrl])
select 'aaaa','http://10.4.19.252' 

where not exists
(
select * from [Catchpage].[dbo].[gdlmo_yq] b where b.[PageUrl] = 'http://10.4.19.252')

 

 

 

posted @ 2011-01-27 19:20  GDLMO  阅读(5256)  评论(0编辑  收藏  举报