虚位以待(AD)
虚位以待(AD)
首页 > 数据库 > DB2数据库 > 数据库中表的复杂查询

数据库中表的复杂查询
类别:DB2数据库   作者:码皇   来源:A__17的专栏     点击:

数据库中表的复杂查询1、连接查询1 0连接的基本语法格式:from TABLE1 join_type TABLE2 [on (join_condition)][where (query_condition)]TABLE1:左表TABLE2:右表join_type:连接的类型。交叉、内连
    数据库中表的复杂查询 1、连接查询 1.0连接的基本语法格式: from TABLE1 join_type TABLE2 [on (join_condition)][where (query_condition)] TABLE1:左表 TABLE2:右表 join_type:连接的类型。交叉、内连接、左外连接、右外连接 on:设置连接条件 where:对连接查询的结果进步一的筛选 1.1交叉连接 select * from CUSTOMER cross join ORDERS;
    或者 select * from CUSTOMER,ORDERS;
    select c.name,o.order_number from CUSTOMER c,ORDERS o;
    1.2内连接: 隐式内连接:(不使用on关键字,使用where) select * from CUSTOMER c,ORDERS o where c.id=o.customer_id;
    显式内连接:(使用on关键字) select * from CUSTOMER c inner join ORDERS o on c.id=o.customer_id;
    1.3外连接: 左外连接:(返回符合连接条件的所有记录,同时还返回左表中其余的所有记录) select * from CUSTOMER c left outer join ORDERS o on c.id=o.customer_id;
    右外连接:(返回符合连接条件的所有记录,同时还返回右表中其余的所有记录) select * from CUSTOMER c right outer join ORDERS o on c.id=o.customer_id;
    2、子查询(嵌套查询) 子查询: select * from orders where customer_id=(select id from customer where name='
    张三'
    );
    3、联合查询 SELECT * FROM orders WHERE price>200 UNION SELECT * FROM orders WHERE customer_id=1;
    取两条语句的并集,并去除重复的记录。
相关热词搜索: 中表 数据库