1、as 给列或者表起别名
2、top n 列名:表示查看前n行数据
top n percent 列名:表示查看前n%的数据
3、排序:order by 列名 asc desc
asc:由小到大排、desc:由大到小排
4、消除重复行:select distinct cid from 表名
5、条件查询:写在where后
1)=判断是否相等
2)between......and......
3)逻辑运算符:and or not
4)in:where cid in (1,3) <=> where cid=1 or cid=3