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

mysql(七)

时间:2019-04-10 00:41:51      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:where   from   字段   inner   隐式   class   _id   out   使用   

多表查询:

  显示内连接:

    select 字段列表 from 表名1  inner  join 表名1 on  条件 

    * inner 可忽略

    select * from student inner  join  class on student.clas_id=class.id

  隐式内连接:

    使用where:

      select  t1.name,t2.name from student t1,class  t2 where t1.class_id=t2.id

  外连接:

    左外链接

    右外链接

    *outer一般忽略

    select * from student left  join outer class on student.clas_id=class.id

子查询:

   select *from student where class_id = (select max(class_id) from student)

   select *from student where class_id in (select id from student where id=2 or id =3)

   select *from student  t1 ,(select *from class where class.id>2) where t1.class_id=t2.id

 

mysql(七)

标签:where   from   字段   inner   隐式   class   _id   out   使用   

原文地址:https://www.cnblogs.com/saber-xi/p/10680754.html

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