MySQL(15):Select-distinct(返回非重复的记录)

1. 查询所有记录 和 查询 非重复记录

语法:
SELECT    [ALL | DISTINCT ]
All:返回所有记录
Distinct:返回非重复记录
针对获得的记录内的字段生效。
 
2. 案例:
(1)看下面图,我们发现查询到是很多重复的,如下:
 
 
 
(2)使用Select—distinct,如下:
 
 
 
 
 
(3)select * from /  select distinct * from
 
 
 
(4)select days,begin_date from teacher_class  /  select distinct days, begin_date from teacher_class

posted on 2015-10-16 16:54  鸿钧老祖  阅读(372)  评论(0编辑  收藏  举报

导航