lu2527

1、distinct

select count(distinct CName) from teble
select count(CName) from (select distinct CName from Course) as temp
SELECT  DISTINCT text_zhcn FROM dms_menuconfig -- 去重查询表中数据

2、group by

select count(1) from Course group by CName

分类:

技术点:

相关文章: