View Single Post
  #6 (permalink)  
Old 04-01-2008, 08:30 AM
Unregistered
 
Posts: n/a
Lightbulb ANY answer. Re: Find duplicate entries in a table?

[sql]select t1.field_name from tablename t1, tablename t2 where t1.field_name=t2.field_name and t1.rowid <> t2.rowid;[/sql]
Reply With Quote