// count users with filter select Count(surname+firstname) as duplicates, surname, firstname from c_contact where show_record=1 group by surname, firstname having Count(surname+firstname) > 1 order by duplicates, surname, firstname // original code SELECT column,COUNT(*) c FROM table GROUP BY column HAVING COUNT(*) > 1 //update code update c_contact set duplicates = dbo.func_get_duplicates(surname, firstname)
Never been to CodeSnippets before?
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
count duplicate users and store in db - sql (See related posts)
You need to create an account or log in to post comments to this site.
Related Posts
» Update From sample in sql update from
» Scripting schema updates in ... in sql tsql database mssql schema update tables microsoft columns query scripting information_schema alter altering
» SQL Update with Values from ... in sql update
» A query from ActiveRecord th... in sql activerecord
» UDF to Add items to a comma ... in sql udf
» UDF to add items to a list, ... in sql udf
Snippets (source code soon to be available) developed by Peter Cooper and powered by Ruby On Rails