文档分类
from 商品表1
where 数量>10
3.从商品库中查询出数量在10和20之间的商品种数。
select *
where 数量 between 10 and 20 (或where 数量>=10 and 数量<=20)
4.从商品库中查询出每类(即分类名相同)商品的最高单价。
select 分类名,max(单价) as 最高单价
group by 分类名