having子句

在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与合计函数一起使用
查一张表中某个字段中的数据相同的记录:

 

select   字段值,count(*)   from   table   group   by   字段值   having   count(*)> 1
 
 
alter table 表名 add constraint cpncode_unique unique (字段)

 

posted on 2011-04-12 14:27  jameshappy  阅读(180)  评论(0编辑  收藏  举报