Home Database Mysql Tutorial Oracle学习笔记:表的联合查询

Oracle学习笔记:表的联合查询

Jun 07, 2016 pm 05:04 PM
database

1、交叉联合:使你对于“联合”的概念开始产生最直观的印象,因为交叉联合的结果就是两个表的笛卡尔积code example: select * f

1、交叉联合:使你对于“联合”的概念开始产生最直观的印象,因为交叉联合的结果就是两个表的笛卡尔积
code example:

select * from T1, T2;

假如表1有2条记录,表2有3条记录,那么查询结果就是2*3=6条记录。

2、等值联合与不等值联合:

等值联合:只显示表1中的数据,以及表2中的、存在于表1中的数据。顾名思义,查询条件/表达式中以等号(“=”)连接。
code example:

select T1.sectionA, T1.sectionB, T2.sectionC from T1, T2

where T1.sectionA = T2.sectionA (and ...);

不等值联合:与等值联合查询类似,只不过在where子句中使用除等号以外的比较符连接,此处不以例详述。

3、内部联合与外部联合

内部联合:产生的结果行数取决于参加联合的行数,也就是说内部联合的行数取决于 WHERE 子句的结果。
code example:

SELECT P.PARTNUM, P.DESCRIPTION, P.PRICE, O.NAME, O.PARTNUM

FROM PART P  JOINORDERS OON ORDERS.PARTNUM = 54;

在这里你使用的语法中的 JOIN ON 不是 ANSI 标准中所指定的,而是我们所使用的解释器的附加语法,你可以用它来指明是内部联合还是外部联合,大多数解释器对些都进行了类似的扩充,注意这种类型的联合没有 WHERE 子句。

内部联合的定义不便介绍,个人理解上面的等值/不等值联合查询例子均为其代表,平时用到的查询也多为内部查询。

在学习过外观查询后有此感受,内部查询结果的直观与简洁与外部查询的“画蛇添足”形成鲜明对比,那么即使我们用到的不是外部联合,那就一定是内部联合了。

此外,对于概念和用法也不必做过多纠缠。这是因为——

大多数的 SQL 产品会判断应该在你的查询中使用哪一种联合,事实上,如果你在过程中使用它(或在程序内使用它),你无需指明联合类型,解释器会为你选择合适的语法形式。

如果你显示地指明了联合类型,那么解释器会用你指明的类型来代替(由解释器自身实现)优化的类型。

外部联合:产生的结果行数取决于参加联合的行数,也就是说内部联合的行数取决于 WHERE 子句的结果,而外部联合则是表间的联合。
code example:

SELECT P.PARTNUM, P.DESCRIPTION, P.PRICE, O.NAME, O.PARTNUM 

FROM PART P RIGHT OUTER JOINORDERS OON ORDERS.PARTNUM = 54;

上述代码示例中使用了 RIGHT OUTER JOIN,它会令 SQL 返回右边表集内的全部记录,对于 ORDERS.PARTNUM54的也会显示这些记录,只不地在相应位置补以空值

左联合也是一样,只不过,由于表1与表2中的记录条数不同,其查询结果也大相径庭。

注意到:在一些解释器中使用+号来代替外部联合。+号的意思就是——显示我的全部内容,包括不匹配的内容。 
code example:

select e.name, e.employee_id, ep.salary, ep.marital_status,

from employee_tbl e, employee_pay_tbl ep

where e.employee_id = ep.employee_id(+) and e.name like '%MITH'

这条语句将会联合两个表,标有+号的 employee_id 将会全部显示,包括不满足条件的记录。

4、表的自我联合:由于联合查询也常被译为“连接”,,因此在有些资料中看到的“自连接”查询指的也是这个概念。它并无特别之处,是指表1与表2均为同一表名。其用处在于检查表中数据的一致性。
比如T1表中两条记录的sectionA字段是同值的,这可能是由于数据录入错误造成的,如果按正常数据使用它,可能造成不可预料的灾难。
code example:

SELECT F.PARTNUM, F.DESCRIPTION, S.PARTNUM, S.DESCRIPTION

FROM PART F, PART S

WHERE F.PARTNUM = S.PARTNUM

AND F.DESCRIPTION S.DESCRIPTION


如果不存在上述异常数据,那么查询结果应该为空;否则1条异常记录对应两条查询结果。可以此来检查数据的一致性。

5、联想到 UNION 与 UNION ALL

UNION与UNION ALL都用来连接两个查询(即两个select子句),但前者返回两个查询的结果并去除其重复的部分,后者一样对查询结果进行合并,但是对于重复记录并不去除。

UNION可以集合运算中的并集运算联系起来,与其对应的是INTERSECT,即交集运算,它返回的是两个查询中共有的部分。

6、补充说明:
上述联合查询仅仅列举重点,在联合查询的分类问题上并未作任何具体而微的阐述,甚至由于联合查询的应用在实际工作中比较少见,对此类概念的理解可以不作深究,但是一知半解是危险的,你为无知付出的代价是昂贵的。本文写作的意义也在于此。

linux

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How does Go language implement the addition, deletion, modification and query operations of the database? How does Go language implement the addition, deletion, modification and query operations of the database? Mar 27, 2024 pm 09:39 PM

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

How does Hibernate implement polymorphic mapping? How does Hibernate implement polymorphic mapping? Apr 17, 2024 pm 12:09 PM

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

An in-depth analysis of how HTML reads the database An in-depth analysis of how HTML reads the database Apr 09, 2024 pm 12:36 PM

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Analysis of the basic principles of MySQL database management system Analysis of the basic principles of MySQL database management system Mar 25, 2024 pm 12:42 PM

Analysis of the basic principles of the MySQL database management system MySQL is a commonly used relational database management system that uses structured query language (SQL) for data storage and management. This article will introduce the basic principles of the MySQL database management system, including database creation, data table design, data addition, deletion, modification, and other operations, and provide specific code examples. 1. Database Creation In MySQL, you first need to create a database instance to store data. The following code can create a file named "my

Tips and practices for handling Chinese garbled characters in databases with PHP Tips and practices for handling Chinese garbled characters in databases with PHP Mar 27, 2024 pm 05:21 PM

PHP is a back-end programming language widely used in website development. It has powerful database operation functions and is often used to interact with databases such as MySQL. However, due to the complexity of Chinese character encoding, problems often arise when dealing with Chinese garbled characters in the database. This article will introduce the skills and practices of PHP in handling Chinese garbled characters in databases, including common causes of garbled characters, solutions and specific code examples. Common reasons for garbled characters are incorrect database character set settings: the correct character set needs to be selected when creating the database, such as utf8 or u

See all articles