SQL语句怎么筛选表中某一字段不重复的数据行数?
1个回答
展开全部
可以参考使用如下写法
如果要全部数据则可以
select * from table T1 where 字段 = (select max(字段) from table T2 where T1.字段2 = T2.字段2)
或
select * from table T1 where not exists(select * from table T2 where T1.字段2 = T2.字段2 and T1.字段 < T2.字段
如果只是数据行数则可以
select count(distinct 字段)from table
如果要全部数据则可以
select * from table T1 where 字段 = (select max(字段) from table T2 where T1.字段2 = T2.字段2)
或
select * from table T1 where not exists(select * from table T2 where T1.字段2 = T2.字段2 and T1.字段 < T2.字段
如果只是数据行数则可以
select count(distinct 字段)from table
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |