View Single Post
  #2 (permalink)  
Old 07-09-2008, 08:57 PM
Dimitar
 
Posts: n/a
Default ANY answer. Re: Find results with repeats

[sql]
select ref_number,current_status,esn from jobs where esn in (
select esn from jobs group by esn having count(esnr)>1
)
;
[/sql]

However, I am not sure I understood correctly what you are trying to achieve.

HTH,

Dimitar
Reply With Quote