sql - Finding One record from table having unique PK and duplicate FK -


i want 1 record table having unique primary key , duplicate foreign key

please see attached image below

alt text http://img413.imageshack.us/img413/9940/findduplicate.png

thanks

select fk, count(*)  table1 group fk having count(*) > 1 

Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -