1.like 模糊查询
select * from tableName where name like "%as%"
2.between 范围查询
select * from tableName where age between 1 and 10
3.in 在列举值内查询
select * from tableName where name in('张三',‘李四‘..........)
4.sum() 函数
select sum(cj) from tableName 计算成绩总值
5.avg() 函数
select avg(cj) from tableName 计算成绩的平均值
6. max() 函数
select max(cj) from tableName 计算最高成绩
7.min()函数
select min(cj) from tableName 计算最小成绩
8.count()函数
select count(*) from tableName 计算元组数量