多表查询
2021-4-7
| 2022-9-1
0  |  0 分钟
type
status
date
slug
summary
tags
category
icon
password
URL
Sep 1, 2022 09:23 AM
  1. 多表查询
    1. 查询语法
    2. 笛卡尔积
      1. 有两个集合A,B,取这两个集合的所有组成情况
      2. 要完成多表查询,需要消除无用的数据
    3. 多表查询分类
      1. 内连接查询
        1. 隐式内连接:使用where条件来消除无用的
        2. 显式内连接
        3. 内连接查询
          1. 从哪些表中查询数据
          2. 条件是什么
          3. 查询那些字段
      2. 外链接查询
        1. 左外连接
        2. 右外连接
        3. 子查询
            • 子查询的结果是单行单列的
              • 子查询可以作为条件,使用运算符去判断
            • 子查询的结果是多行单列的
              • 子查询可以作为条,使用运算符in来判断
            • 子查询的结果是多行多列的
              • 子查询可以作为一张虚拟表
             
    1. 事务
    1. DCL
     
    select * from emp, dept where emp. "dept_id' = dept. 'id' ;
    select emp.name, emp.gender,dept.name from emp, dept where emp.'dept_id'=dept. 'id';
     
     
    notion image
     
    notion image
     
    notion image
     
    notion image
     
    notion image
     
    notion image
     
    notion image
    学习思考
  2. database
  3. 操作数据库表HashMap存储自定义类型键值
    • Valine
    • Cusdis
    目录