千家信息网

mysql去重查询表中数据

发表于:2025-11-14 作者:千家信息网编辑
千家信息网最后更新 2025年11月14日,1、distinctselect count(distinct CName) from tebleselect count(CName) from (select distinct CName fro
千家信息网最后更新 2025年11月14日mysql去重查询表中数据

1、distinct

select count(distinct CName) from tebleselect count(CName) from (select distinct CName from Course) as tempSELECT  DISTINCT text_zhcn FROM dms_menuconfig  -- 去重查询表中数据select DISTINCT(user_id) from user_info where children_merchant_id='kuaiditong';

2、group by

select count(1) from Course group by CName

文档:mysql去重查询表中数据.note
链接:http://note.youdao.com/noteshare?id=581440d92396bab4de6568d1a69baa58&sub=9B8DAB091CC5490BA5F8FA29557CCD67

0