Home Database Mysql Tutorial SQL多表链接查询、嵌入SELECT语句的子查询技术

SQL多表链接查询、嵌入SELECT语句的子查询技术

Jun 07, 2016 pm 04:18 PM
select Embed technology Inquire statement Link

高级查询技术主要是涉及多个表的链接查询技术、嵌入SELECT语句的子查询技术,把多个查询联合起来的联合技术等。 1. 连接查询 需要同时从两个或者连个以上的表中检索数据。链接就是允许同时从两个表或者两个以上的表中检索数据,指定这些表中的某个或者某些列

  高级查询技术主要是涉及多个表的链接查询技术、嵌入SELECT语句的子查询技术,把多个查询联合起来的联合技术等。

  1. 连接查询

  需要同时从两个或者连个以上的表中检索数据。链接就是允许同时从两个表或者两个以上的表中检索数据,指定这些表中的某个或者某些列作为连接条件。在SQL Server中,可以使用两种连接语法的形式,一种是ANSI链接语法形式,这是连接条件出现在FROM子句中;另外一种SQL Server链接语法形式,这是连接条件出现在WHERE条件中。

  1. ANSI链接

  链接错做可以同时查询两个或者多个表中的数据,所生成的结果集包含多个表中的字段,需要使用连个表中共同拥有的字段以连接多个表。

  进行连接操作时,SQL一行一行地比较所指定的字段,然后把比较后的结果和满足条件的数据合并,并生成新的记录。

  有三种连接方式:内连接、外连接和交叉连接。在一个SELECT语句中,可以连接多个表;链接通过扩展SELECT语句的FROM字句,增加了两个关键字:JOIN和ON

  JOIN:指定要了链接的表

  ON:指定这些表共同拥有的字段

  在表的主键和外部键的基础上,指定连接条件。

  ANSI链接语法形式如下所示:

  SELECT table_name.column_name, table_name.column_name,……

  FROM { table_name[ join_type] JOIN table_name ON search_conditions}

  WHERE[ search_conditions]

  其中[ join_type ]可以为如下三个关键字形式:

  INNER(内连接):链接查询结果集中仅包含满足条件的行,内连接是SQL Server缺省的连接方式,可以把INNER JOIN简写成 JOIN;

  OUTER(外连接):链接查询结果集中既包含哪些满足条件的行,,还包含其中某个表的全部行,有三种形式的外连接:左外连接、右外连接、全外连接。

  例如:已经选修了4号课程的同学信息的示例,该示例涉及到了学生表和选修课:

  SELECT 学生表

  FROM 学生表 JOIN 选课表 ON 学生表.学号 选课表.学号

  WHERE 选课表 课程号=4

  2. SQL Server链接

  多表连接,可以在FROM子句后直接指定多个表,语义上表示从这几个表的笛卡尔积中检索数据,可以用WHERE子句设定过滤条件。

  SQL Server链接语法形式如下:

  SELECT table_name.column_name,table_name.column_name,……

  FROM { table_name,table_name,……}

  WHERE table_name.column_name join_operator table_name.column_name

  在此种语法形式中,FROM子句列出了连接时所使用到的全部表名,WHERE子句指定哪些行应该出现在结果集中,即用WHERE子句设定过滤条件。在WHERE子句中,在两个连接的列中使用链接运算符。

  例如:检索出至少已经有一门课程及格的同学的信息示例:

  SELECT DISTINCT 学生表 *

  FROM 学生表 选课表

  WHERE 学生表.学号=选课表.学号 AND 选课表.成绩=60

  3. 子查询

  子查询是一系列SELECT语句。SELECT语句可以嵌套在其他许多语句中,例如SELECT、INSERT、UPDATE、DELETE等,这些嵌套的SELECT语句就称为子查询。子查询可以把一个复杂的查询分解成一系列的逻辑步骤,这样就可以用一个单个的语句解决一个复杂的查询问题。当一个查询依赖于另一个查询的结果时,子查询会很有用。

  使用子查询时,应注意:

  子查询要用括号起来

  只需要一个值或一系列的值,就可以用子查询代替一个表达式

  子查询中不能查询包含数据类型是text或image的字段

  子查询中也可以再包含子查询,嵌套可以多至32层

  1. 把子查询用作派生的表

  可以用子查询产生一个派生的表,用于代替FROM子句中的表。派生表示FROM子句中子查询的一个特殊用法,用一个别名或用户自定义的名字来引用这个派生表。FROM子句中的子查询将返回一个结果集,这个结果集所形成的表将被外层SELECT语句使用。

  例如:内层查询用子查询产生了一个派生的表,外层查询将使用内层查询的结果集。在功能上,派生表本身就等同于一个完整的查询

  SLECT A *

  FROM select 学号,姓名,年龄 from 学生表

  Where 班级=‘GZ02计6’ as a

  2. 把子查询用作表达式

  在T-SQL中,所有使用表达式的地方,都可以用子查询来代替。此时子查询必须返回单个的值或某一个字段的值。子查询可以返回一系列的值来代替出现在WHERE子句中的IN关键字的表达式。

  例如:查询GZ02计7班同学的平均年龄以及每个同学年龄与平均年龄的差

  SELECT avg(年龄) FROM 学生表 as 平均年龄

  其计算结果作为选择列表中的一个输出列,并作为算术表达式的一部分输出:

  年龄-(SELECT avg(年龄) FROM 学生表) as 年龄差

  3. 相关子查询

  相关子查询可被用作动态表达式,这个表达式的值相对于外层查询的每一行而变化。查询处理器为外层查询的每一个记录计算子查询的值,一次一行,而这个子查询每次都会被作为一个表达式而被计算并返回给外层查询。相关子查询是动态执行的子查询和外层查询间的一个非常有效的联合。

  使用相关子查询时,内层子查询被反复执行,外层查询有多少记录,内层查询就被齿形多少次。

  例如:查询已选修课程号的1且成绩在90分以上的同学的学号及姓名:

  SELECT 学号 姓名

  FROM 学生表

  WHERE 90

  FROM 选课表

  WHERE 学生表.学号=选课表.学号 AND 课程号=1)

  4. 使用EXISTS和NOT EXISTS操作符

  在相关子查询中可以使用EXISTS和NOT EXISTS操作符判断某个值是否在一系列的值中。SQL Server处理带有EXISTS和NOT EXISTS操作符的子查询时:

  外层查询测试子查询返回的记录是否存在

  基于查询所指定的条件,子查询返回TRUE或FALSE

  子查询不产生任何数据

  例如:同时选修了1号课程和2号课程的同学的信息:

  SELECT 学号,姓名,班级

  FROM 学生表

  WHERE EXISTS(SELECT * FROM 选课表

  WHERE 学号=学生表.学号 AND 课程号=1)

  AND EXISTS(SELECT * FROM 选课表

  WHERE 学号=学生表.学号 AND 课程号=2)

  ① 找外层表“学生表”的第1行,根据其“学号”值处理内层查询

  ② 用外层的“学号”与内层表“选课表”的“学号”比较,由此决定外层条件的真、假,如果为真,则此记录为符合条件的结果,反之,则不输出。

  ③ 顺序处理外层表“学生表”中的第2、3、4、。。。行

  检索出每一门选修课都几个的同学信息

  SELECT * FROM 学生表 WHERE

  NOT EXISTS( SELECT * FROM 选课表

  WHERE 学生表.学号=选课表.学号 AND 成绩

  AND EXISTS( SELECT * FROM 选课表

  WHERE 学生表.学号=选课表.学号)

  使用TOP限制结果集

  在使用SELECT语句进行查询时,有时我们希望列出前几个结果,而不是全部结果。例如,竞赛时,可能只取成绩最高的前三名,这时就需要使用TOP关键字来选取输出的结果

  使用TOP的格式为:

  SELECT TOP n[ percent] [with ties] 查询列表

  其中:

  n:为非负整数

  TOP n:表示取查询结果的前n行

  TOP n percent:表示取查询结果的前n%行

  With ties:表示包括并列的结果

  例如:检索出总分在前5位的同学的学号及其总分:

  SELECT TOP 5 WITH TIES 学号, SUM(成绩) AS 总分

  FROM 选课表

  GROUP BY 学号

  ORDER BY 总分 DESC

  使用TOP时,注意最好与ORDER BY子句一起使用,因为这样的前几名才有意义。但当使用WITH TIES时,要求必须使用ORDER BY子句

  合并多个结果集

  可以将两个或多个查询的结果组合为一个结果集,这就是合并多个届国际的含义。使用UNION可以实现合并多个查询结果集的目的。作用UNION的格式为:

  SELECT 语句1

  UNION

  SELECT 语句2

  UNION [ALL]

  ……

  SELECT 语句n

  使用UNION,应注意几点:

  在默认情况下,UNION运算符删除全部空余。如果使用ALL选项,那么空余行不删除:

  所有查询语句中的列数和列的顺序必须相同

  所有查询语句中的对应列的数据类型必须兼容

  如果在UNION语句中,包含一个ORDER BY子句,那么整个结果集都要排序

  在结果集中,列名来自第1个SELECT子句

  例如:对GZ02计6班和GZ02计7班学生的查询结果合并为一个结果集:

  SELECT * FROM 学生表 WHERE 班级=‘GZ02计6’

  UNION

  SELECT * FROM 学生表 WHERE 班级=‘GZ02计7’

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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 to download links starting with 115://? Download method introduction How to download links starting with 115://? Download method introduction Mar 14, 2024 am 11:58 AM

Recently, many users have been asking the editor, how to download links starting with 115://? If you want to download links starting with 115://, you need to use the 115 browser. After you download the 115 browser, let's take a look at the download tutorial compiled by the editor below. Introduction to how to download links starting with 115:// 1. Log in to 115.com, download and install the 115 browser. 2. Enter: chrome://extensions/ in the 115 browser address bar, enter the extension center, search for Tampermonkey, and install the corresponding plug-in. 3. Enter in the address bar of 115 browser: Grease Monkey Script: https://greasyfork.org/en/

How to get the WeChat video account link? How to add product links to WeChat video account? How to get the WeChat video account link? How to add product links to WeChat video account? Mar 22, 2024 pm 09:36 PM

As part of the WeChat ecosystem, WeChat video accounts have gradually become an important promotion tool for content creators and merchants. Getting links to video accounts on this platform is crucial for sharing and disseminating content. The following will introduce in detail how to obtain the WeChat video account link and how to add product links to the video account to improve the dissemination effect of the content. 1. How to get the WeChat video account link? After posting a video on your WeChat video account, the system will automatically create a video link. Authors can copy the link after publishing to facilitate sharing and dissemination. After logging in to your WeChat video account, you can browse the homepage of your video account. On the home page, each video is accompanied by a corresponding link so you can copy or share it directly. 3. Search video account: Enter the video account name in the WeChat search box

What are the requirements for a video link? How to link the video account with goods? What are the requirements for a video link? How to link the video account with goods? Mar 07, 2024 pm 01:13 PM

With the popularity of short video platforms, more and more creators are beginning to use video accounts to create and promote content. Video accounts can not only showcase personal talents, but also realize commercial monetization through product links. However, to add a link to a video account, certain conditions must be met. 1. What are the requirements for a video link? Video account authentication is a prerequisite for adding links to your video account. Currently, major short video platforms such as Douyin and Kuaishou provide certification services, which mainly include two types: personal certification and institutional certification. Personal certification requires the submission of real identity information, while institutional certification requires the provision of certification materials from relevant companies or organizations. After completing the authentication, users can add links to their video accounts to enhance the credibility and authority of their accounts. One of the video link

How to check your academic qualifications on Xuexin.com How to check your academic qualifications on Xuexin.com Mar 28, 2024 pm 04:31 PM

How to check my academic qualifications on Xuexin.com? You can check your academic qualifications on Xuexin.com, but many users don’t know how to check their academic qualifications on Xuexin.com. Next, the editor brings you a graphic tutorial on how to check your academic qualifications on Xuexin.com. Interested users come and take a look! Xuexin.com usage tutorial: How to check your academic qualifications on Xuexin.com 1. Xuexin.com entrance: https://www.chsi.com.cn/ 2. Website query: Step 1: Click on the Xuexin.com address above to enter the homepage Click [Education Query]; Step 2: On the latest webpage, click [Query] as shown by the arrow in the figure below; Step 3: Then click [Login Academic Credit File] on the new page; Step 4: On the login page Enter the information and click [Login];

12306 How to check historical ticket purchase records How to check historical ticket purchase records 12306 How to check historical ticket purchase records How to check historical ticket purchase records Mar 28, 2024 pm 03:11 PM

Download the latest version of 12306 ticket booking app. It is a travel ticket purchasing software that everyone is very satisfied with. It is very convenient to go wherever you want. There are many ticket sources provided in the software. You only need to pass real-name authentication to purchase tickets online. All users You can easily buy travel tickets and air tickets and enjoy different discounts. You can also start booking reservations in advance to grab tickets. You can book hotels or special car transfers. With it, you can go where you want to go and buy tickets with one click. Traveling is simpler and more convenient, making everyone's travel experience more comfortable. Now the editor details it online Provides 12306 users with a way to view historical ticket purchase records. 1. Open Railway 12306, click My in the lower right corner, and click My Order 2. Click Paid on the order page. 3. On the paid page

DualBEV: significantly surpassing BEVFormer and BEVDet4D, open the book! DualBEV: significantly surpassing BEVFormer and BEVDet4D, open the book! Mar 21, 2024 pm 05:21 PM

This paper explores the problem of accurately detecting objects from different viewing angles (such as perspective and bird's-eye view) in autonomous driving, especially how to effectively transform features from perspective (PV) to bird's-eye view (BEV) space. Transformation is implemented via the Visual Transformation (VT) module. Existing methods are broadly divided into two strategies: 2D to 3D and 3D to 2D conversion. 2D-to-3D methods improve dense 2D features by predicting depth probabilities, but the inherent uncertainty of depth predictions, especially in distant regions, may introduce inaccuracies. While 3D to 2D methods usually use 3D queries to sample 2D features and learn the attention weights of the correspondence between 3D and 2D features through a Transformer, which increases the computational and deployment time.

How to check the activation date on Apple mobile phone How to check the activation date on Apple mobile phone Mar 08, 2024 pm 04:07 PM

If you want to check the activation date using an Apple mobile phone, the best way is to check it through the serial number in the mobile phone. You can also check it by visiting Apple's official website, connecting it to a computer, and downloading third-party software to check it. How to check the activation date of Apple mobile phone Answer: Serial number query, Apple official website query, computer query, third-party software query 1. The best way for users is to know the serial number of their mobile phone. You can see the serial number by opening Settings, General, About This Machine. . 2. Using the serial number, you can not only know the activation date of your mobile phone, but also check the mobile phone version, mobile phone origin, mobile phone factory date, etc. 3. Users visit Apple's official website to find technical support, find the service and repair column at the bottom of the page, and check the iPhone activation information there. 4. User

Comparison of similarities and differences between MySQL and PL/SQL Comparison of similarities and differences between MySQL and PL/SQL Mar 16, 2024 am 11:15 AM

MySQL and PL/SQL are two different database management systems, representing the characteristics of relational databases and procedural languages ​​respectively. This article will compare the similarities and differences between MySQL and PL/SQL, with specific code examples to illustrate. MySQL is a popular relational database management system that uses Structured Query Language (SQL) to manage and operate databases. PL/SQL is a procedural language unique to Oracle database and is used to write database objects such as stored procedures, triggers and functions. same

See all articles