search
HomeDatabaseMysql TutorialOracle基础教程:多表查询、SQL99

多表查询 等连接 通过两个表具有相同意义的列,建立连接条件. 查询结果只显示两个列中的值是等值条件的行数据 表中同名列被选择

多表查询
 等连接
  通过两个表具有相同意义的列,建立连接条件.
  查询结果只显示两个列中的值是等值条件的行数据
  表中同名列被选择时必须添加表名前缀进行修饰 否则无法确定这一列是属于哪个表
  N张表等值连接,条件至少有N-1个,否则会产生笛卡尔积
 不等连接
  A表中的某列数据和B表中一列或多列的关系是非等值关系,大于,小于,不等于,等条件都属于不等连接的范畴
 自连接
  数据都来自一张表,所以在from字句中需要对表添加别名,添加表别名后才能合法化的引用表中的列名.
  本质就是将一张表虚拟成了两张表
 外连接
  即是选择出满足等连接条件及其以外的行
  (+)修饰符号用法:放置在选出结果只包含等连接的列后,则另一列的结果就是等值行+非等值行
 全连接(Oracle 不提供连接关键字,,需要用集合模式实现)
 
 SQL1999(SQL99) 有全连接的关键词

当数据需要从多个表中获得时

idle> select * from emp,dept;
...
...
56 rows selected.
这样得到的结果是 56 行,其实两个表产生了笛卡尔集 14 * 4
idle> select count(*) from emp;

  COUNT(*)
----------
 14

idle> select count(*) from dept;

  COUNT(*)
----------
  4

idle>

在连接中给定一个等值条件 一般是主键和外键的关系
例如deptno在dept表中是主键 在emp表中是外键
观看dept(部门表)和emp(员工表)的关系
他们是主从关系,dept是主表,emp是从表
emp中的deptno一定要隶属于dept中的deptno
所以他们两个列是等值的
具体的主键和外键关系 我们在以后建表时再详细阐述

 


等连接

按deptno的等值关系联合两张表的所有列

idle> select * from dept,emp where dept.deptno=emp.deptno;

    DEPTNO DNAME   LOC       EMPNO ENAME      JOB        MGR HIREDATE        SAL COMM  DEPTNO
---------- -------------- ------------- ---------- ---------- --------- ---------- ------------------- ---------- ---------- ----------
 10 ACCOUNTING   NEW YORK       7782 CLARK      MANAGER       7839 1981-06-09 00:00:00      2450       10
 10 ACCOUNTING   NEW YORK       7839 KING       PRESIDENT     1981-11-17 00:00:00      5000       10
 10 ACCOUNTING   NEW YORK       7934 MILLER     CLERK       7782 1982-01-23 00:00:00      1300       10
 20 RESEARCH   DALLAS       7566 JONES      MANAGER       7839 1981-04-02 00:00:00      2975       20
 20 RESEARCH   DALLAS       7902 FORD       ANALYST       7566 1981-12-03 00:00:00      3000       20
 20 RESEARCH   DALLAS       7876 ADAMS      CLERK       7788 1987-05-23 00:00:00      1100       20
 20 RESEARCH   DALLAS       7369 SMITH      CLERK       7902 1980-12-17 00:00:00       800       20
 20 RESEARCH   DALLAS       7788 SCOTT      ANALYST       7566 1987-04-19 00:00:00      3000       20
 30 SALES   CHICAGO       7521 WARD       SALESMAN       7698 1981-02-22 00:00:00      1250  500      30
 30 SALES   CHICAGO       7844 TURNER     SALESMAN       7698 1981-09-08 00:00:00      1500    0      30
 30 SALES   CHICAGO       7499 ALLEN      SALESMAN       7698 1981-02-20 00:00:00      1600  300      30
 30 SALES   CHICAGO       7900 JAMES      CLERK       7698 1981-12-03 00:00:00       950       30
 30 SALES   CHICAGO       7698 BLAKE      MANAGER       7839 1981-05-01 00:00:00      2850       30
 30 SALES   CHICAGO       7654 MARTIN     SALESMAN       7698 1981-09-28 00:00:00      1250 1400      30

14 rows selected.

idle>
这才是我们要的结果.笛卡尔积几乎我们不会需要.多表查询时基本都带有where子句来描述多个表的关系 避免笛卡尔集


当两个表中有相同的列名时,为了区分 要在列前加上表名作前缀.
不冲突时 直接使用
idle> select deptno,empno,ename,dname,sal from emp a,dept b where b.deptno=a.deptno;
select deptno,empno,ename,dname,sal from emp a,dept b where b.deptno=a.deptno
       *
ERROR at line 1:
ORA-00918: column ambiguously defined
因为deptno 没有表前缀 冲突

idle>
在联合的两个表内取数据:描述scott在哪个部门
idle> select empno,ename,dname,sal from emp,dept where emp.deptno=dept.deptno and ename='SCOTT';

     EMPNO ENAME      DNAME      SAL
---------- ---------- -------------- ----------
      7788 SCOTT      RESEARCH     3000

idle>


表的别名
 格式:表名 别名
给表取别名是很有必要的,因为有的表名很长 不便于引用时书写.

idle> select a.deptno,empno,ename,dname,sal from emp a,dept b where b.deptno=a.deptno and ename='SCOTT';

    DEPTNO EMPNO ENAME  DNAME         SAL
---------- ---------- ---------- -------------- ----------
 20  7788 SCOTT  RESEARCH       3000

idle>


不等连接
 就是排除完全相等条件以外的 >,=, between and
 主要在于不同表之间显示特定范围的信息(也可以理解成包含关系)
例如: SALGRADE表把工资划分了5个等级
idle> select * from SALGRADE;

     GRADE LOSAL    HISAL
---------- ---------- ----------
  1   700     1200
  2  1201     1400
  3  1401     2000
  4  2001     3000
  5  3001     9999

idle>

查处每个员工的工资等级
idle> select ename,sal,grade from emp a,salgrade b where sal between losal and hisal;

ENAME    SAL    GRADE
---------- ---------- ----------
SMITH    800        1
JAMES    950        1
ADAMS   1100        1
WARD   1250        2
MARTIN   1250        2
MILLER   1300        2
TURNER   1500        3
ALLEN   1600        3
CLARK   2450        4
BLAKE   2850        4
JONES   2975        4
SCOTT   3000        4
FORD   3000        4
KING   5000        5

14 rows selected.

idle>

练习:
 1.查询名字是S开头的员工名,员工号,部门号,部门名,部位地理位置
 select empno,ename,emp.deptno,dept.dname,dept.loc
 from emp,dept
 where ename like 'S%' and emp.deptno=dept.deptno;
 2.查询员工名,部门名,工资,工资等级
 select empno,ename,grade
 from emp,salgrade
 where sal between losal and hisal;
 3.查询工作在NEW YORK的所有员工
 select empno,ename,emp.deptno,dept.dname,dept.loc
  from emp,dept
   where emp.deptno=dept.deptno and dept.loc='NEW YORK';

 

自连接
 同一张表内的连接查询 即把一个表映射成两个表
 主要用于表的自参照关系 比如emp中的上下级或层次关系
 因为自连接是同一张表之间的链接查询 所以必须定义表别名

例子:根据empno和mgr的对应关系,可以查找出KING的下属都有谁

idle> select b.ename||'''s manager is '||a.ename from emp a,emp b where a.empno = b.mgr and a.ename='KING';

B.ENAME||'''SMANAGERIS'||A.ENAME
----------------------------------
BLAKE's manager is KING
JONES's manager is KING
CLARK's manager is KING

idle>

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.