Click here to Skip to main content
15,885,874 members
Articles / Programming Languages / SQL
Alternative
Tip/Trick

COUNT of DISTINCT Rows in SQL Server

Rate me:
Please Sign up or sign in to vote.
3.50/5 (3 votes)
26 Nov 2010CPOL 13.8K   4   3
Nice tip :)But if you have any column say empid which have the unique constraint then it is better to use the following SQL queryselect count(distinct empid ) from employees

Nice tip :)


But if you have any column say empid which have the unique constraint then it is better to use the following SQL query


select count(distinct empid ) from employees

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Database Administrator
India India
I am currently working as a Senior DBA and have around 11 years of experience in database.

Degree:-
Master Degree in Computer(MCA)

Work experience:-
Designing of the database.
Database Optimization.
Writing Complex Stored Procedures,Functions,Triggers etc.
Designing and developing SSIS & DTS packages.
Designing SQL Reports using SSRS.
Database Server Maintenance.

Certification:-
Microsoft certified Sql DBA in Sql server 2008 (MCTS).
Microsoft certified BI professional in Sql server 2008 (MCTS).
Oracle certified profession DBA in ORACLE 10g (OCP)
certified profession DBA in ORACLE 9i (OCP)

My other publication
Technical Blog:- Technologies with Vivek Johari

Moderator and Blogger at BeyondRelational.com

Guest Author and Blogger at sqlservercentral.com

Comments and Discussions

 
GeneralReason for my vote of 1 Might work, who knows. It's not clea... Pin
Simon Dufour1-Dec-10 3:16
Simon Dufour1-Dec-10 3:16 
GeneralReason for my vote of 3 gud 1 Pin
ravindra_dhakate@rediffmail.com29-Nov-10 3:39
ravindra_dhakate@rediffmail.com29-Nov-10 3:39 
GeneralYes, for specific column(s) list, DISTINCT works, but for '*... Pin
mravikiran27-Nov-10 12:09
mravikiran27-Nov-10 12:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.