码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server select count(distinct *)

时间:2014-12-11 17:12:12      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   sp   on   2014   

测试表:student

select * from studnet;

bubuko.com,布布扣

select count(distinct name) from student;
bubuko.com,布布扣
select count(distinct *) from student;

bubuko.com,布布扣

这样是有错误的,可以变通的实现
select count(*) 
from
(select distinct * from student) st;

bubuko.com,布布扣

此路不通,我走另一条路!

SQL Server select count(distinct *)

标签:style   blog   http   ar   color   os   sp   on   2014   

原文地址:http://www.cnblogs.com/cnmarkao/p/4157961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!