mysql

Posted saber-xi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql相关的知识,希望对你有一定的参考价值。

多表查询:

  显示内连接:

    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的主要内容,如果未能解决你的问题,请参考以下文章

MySQLMySQL 一些 使用 案例

MySQL的常用操作更改root密码连接MySQLMySQL常用的命令

MySQLMysql必会语句

MySQLMysql必会语句

MySQLMysql必会语句

mysqlmysql优化