码迷,mamicode.com
首页 > 数据库 > 详细

MySQL连表查询

时间:2019-11-09 09:33:29      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:操作   create   desc   from   sql   order by   span   col   创建数据库   

MySQL多表操作:

  以学生表、成绩表和考勤表为例:

  1、创建数据库:

    create database 数据库;

  连表学生总成绩降序排列:

    select score.g_id,student.name,score.total from student,score where score.s_id=student.s_id order by score.total desc;

  从成绩表中和学生表中找总成绩最高的学生:

  select 成绩表.g_id,学生表.name,成绩表.total from 学生表 inner join 成绩表 on 学生表.s_id=成绩表.s_id group by 学生表.s_id order by max(成绩表.total) desc limit 1;
  select score.g_id,student.name,score.total from student,score where score.s_id=student.s_id order by score.total desc limit 1;

 

 

 

 

MySQL连表查询

标签:操作   create   desc   from   sql   order by   span   col   创建数据库   

原文地址:https://www.cnblogs.com/xiaozhou223/p/11824195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!