MySQL - SELECT - 语句
作者:互联网
限制语句
distinct
DISTINCT 关键词用于返回唯一不同的值。
也就是:自动去重
使用
select distinct studentno,courseno
-> from score
-> where daily >90
and
当有两个限制条件时候,使用and连接
使用
-> where courseno='c08126' and daily between 85 and 100;
范围限制
选择一个范围内的数据
使用
-> where daily between 85 and 100;
标签:语句,distinct,between,daily,MySQL,100,where,SELECT,85 来源: https://www.cnblogs.com/kingwz/p/16209535.html