This blog is mostly a blog for me with hints to remember those little bits of code etc where ever I am. Please be aware of this when reading any of the posts as they are mainly reminders for me. When I get time I will try to flesh out those sections that are a little ambiguous.
Pages
▼
Friday, 31 October 2014
Find Duplicate Fields in a table
select field1,field2,field3, count(*)from table_name
groupby field1,field2,field3
having count(*)>1
No comments:
Post a Comment
Note: only a member of this blog may post a comment.