select count(*), max(age), min(age), avg(age) from myTable where gender = '女' and edu = '大学'
select * | 字段列表 from 表名 order by 字段 asc | desc
select * | 字段列表 from 表名 limit 起始行号,要取出的行数
////////////////
select 语句大总结:
select * | 字段列表 from 表名 where 条件 order by排序设定 limit 限制设置,
比如:
select id, name, age from myTable where gender='女' order by age desc limit 5,10;
////////////////
多表查询:
内连接(最常用):
select ..... from 表1 inner join 表2 on 表1.xx字段 = 表2.xx字段;
左连接:
select ..... from 表1 left join 表2 on 表1.xx字段 = 表2.xx字段;
右连接:
select ..... from 表1 right join 表2 on 表1.xx字段 = 表2.xx字段;