简单查询

简单查询,使用TOP子句

查询结果排序order by

带条件的查询where,使用算术表达式,使用逻辑表达式,使用between关键字,使用in关键字,

模糊查询like

在查询中使用聚合函数:sum(x),avg(x),min(x),max(x),count(x),count(*)

使用分组查询group by,having子句

distinct关键字 列别名

select top 6 * from sales order by qty desc

select au_id,au_fname,au_lname from authors where state in('ks','ca','mi')

select au_fname,au_lname,phone from authors where au_id like '72[234]-%'

select type,sum(price),avg(price),count(*) from titles group by type having type in('business','psycheology')

你可能感兴趣的:(简单查询)