DISTINCT 关键词用于返回唯一不同的值。 也就是:自动去重
自动去重
使用
select distinct studentno,courseno -> from score -> where daily >90
当有两个限制条件时候,使用and连接 使用
-> where courseno='c08126' and daily between 85 and 100;
选择一个范围内的数据 使用
-> where daily between 85 and 100;