• MySQL多表联合查询


    MySQL这方面的资料比较少,手边的项目用到了多表的联合查询,干脆备忘下来。

    select a.*,b.*,c.* from a  INNER JOIN  b  ON a.cid=b.cid  INNER JOIN c ON c.cid=a.cid  where  a.cid=2 and a.id =3
    SELECT e_link.link_id, e_link.l_name, e_link.url, e_link.pic_url, e_link.order_id AS l_order_id, e_link.font_color, 
    e_linkclass.name, e_linkclass.order_id AS c_order_id
    FROM  `e_link` 
    JOIN  `e_linkclass` ON e_link.c_id = e_linkclass.id
    AND e_link.c_id =1
    LIMIT 0 , 30
    

    INNER JOIN 运算 组合两个表中的记录,只要在公共字段之中有相符的值。 语法

    FROM table1 INNER JOIN table2 ON table1.field1 compopr table2.field2
    

    INNER JOIN 运算可分为以下几个部分: 部分 说明 table1, table2 记录被组合的表的名称。 field1, field2 被联接的字段的名称。若它们不是由数字构成的,则这些字段必须为相同的数据类型并包含同类数据,但它们无须具有相同的名称。 compopr 任何的关系比较运算子:"=," " SELECT CategoryName, ProductName FROM Categories INNER JOIN Products ON Categories.CategoryID = Products.CategoryID;在上面的示例中,类标识符是已被联接的字段,但是它并不包含在查询输出中,因它并非被包含在 SELECT 语句之中。在这个示例中,若要包含联接字段,将字段名包含在 SELECT 语句中, Categories.CategoryID. 也可以使用下列语法,在一个 JOIN 语句中链接多个 ON 子句:

    SELECT fields
    FROM table1 INNER JOIN table2 
    ON table1.field1 compopr table2.field1 AND 
    ON table1.field2 compopr table2.field2) OR 
    ON table1.field3 compopr table2.field3)];
    

    也可以使用下列语法,嵌套 JOIN 语句:

    SELECT fields
    FROM table1 INNER JOIN 
    (table2 INNER JOIN [( ]table3 
    [INNER JOIN [( ]tablex [INNER JOIN ...)]
    ON table3.field3 compopr tablex.fieldx)] 
    ON table2.field2 compopr table3.field3) 
    ON table1.field1 compopr table2.field2;
    

    在一个 INNER JOIN 之中,可以嵌套 LEFT JOIN 或 RIGHT JOIN,但是在 LEFT JOIN 或 RIGHT JOIN 中不能嵌套 INNER JOIN。

  • 相关阅读:
    nginx 简单应用
    js判断图片是否存在
    Quartz Cron 生成工具
    c# 读写文件时文件正由另一进程使用,因此该进程无法访问该文件
    SQL Server 将某一列的值拼接成字符串
    EF 里的 join and Group Join
    .net EF Join 关联表分页查询
    IIS 设置文件可下载
    windows 2003 无法安装 .net4.0 windows服务
    NEST 增删改查
  • 原文地址:https://www.cnblogs.com/endige/p/2418704.html
Copyright © 2020-2023  润新知