Access入门 2010(select查询)
order by(按升序排列)?+desc(按降序排列)
group by(进行分组,下一行只能用having)
sum(数值总数)?+as?(新字段的名称)
count(记录个数,null值不包括)
AVG(平均值,null值不包括)
max(数值最大值)和min(数值最小值)同一用法,
如:where 数量 in (select max/min(数量)from 图书)。