摘要:
内连接 关键字: inner join on 语句:select * from <a_table> inner join <b_table> on a.id = b.id ; 说明:返回表之间关联字段相符的记录 Table:stuinfo Table:stuscore 采用内连接查询方式: sele 阅读全文
摘要:
排序 :order by desc select * from <tablename> order by <字段名> desc;order by默认升序 desc 降序 分组 :group by 按照字段进行分组 select <查询内容> from <tablename> group by <字段 阅读全文