Home Database Mysql Tutorial mysql 多表合并查询

mysql 多表合并查询

Jun 07, 2016 pm 03:28 PM
http mysql merge Inquire

http://hi.baidu.com/magicweng/item/094ffd1808ee945bf0090e44 http://blog.jhonse.com/index.php/archives/2076.jhonse 挺有用的就记录下来了 一UNION 语法 SELECT ... UNION[ALL | DISTINCT] SELECT ... [UNION [ALL | DISTINCT] SELECT ...] UNION 用于

http://hi.baidu.com/magicweng/item/094ffd1808ee945bf0090e44

 http://blog.jhonse.com/index.php/archives/2076.jhonse挺有用的就记录下来了

一UNION语法 

 

SELECT ...    

UNION[ALL | DISTINCT]    

SELECT ...    

[UNION [ALL | DISTINCT]   

SELECT ...]   

 

UNION用于把来自许多SELECT语句的结果组合到一个结果集合中。 

 

对于每个SELECT语句的对应位置的被选择的列应具有相同的类型。(例如,被第一个语句选择的第一列应和被其它语句选择的第一列具有相同的类型。)(注:我在mysql5.5版本测试的,如果两个表对应的列属性的类型不相同,也能执行语句,大家也可验证下)在第一个SELECT语句中被使用的列名称也被用于结果的列名称(需要注意的是各个查询语句select的列的个数要保持相同,比如你可以用select * from ... UNINO ALL select * from ... UNION ALL... ,当然了这时你要保证select的列的个数要保持一致,不用select *时,就不用啰嗦了,哈哈哈)。 

 

SELECT语句为常规的选择语句,但是受到如下的限定: 

·只有最后一个SELECT语句可以使用INTO OUTFILE。 

·HIGH_PRIORITY不能与作为UNION一部分的SELECT语句同时使用。如果您对第一个 SELECT指定了HIGH_PRIORITY,则不会起作用。如果您对其它后续的SELECT语句指定了HIGH_PRIORITY,则会产生语法错误。 

 

如果您对UNION不使用关键词ALL,则所有返回的行都是唯一的,如同您已经对整个结果集合使用了DISTINCT。如果您指定了ALL,您会从所有用过的SELECT语句中得到所有匹配的行。 比如SELECT VALUE fromcode UNION ALL (SELECT NAME from neeq_code)  不去重 ;去掉All 则去重

 

DISTINCT关键词是一个自选词,不起任何作用,但是根据SQL标准的要求,在语法中允许采用。(在MySQL中,DISTINCT代表一个共用体的默认工作性质。) 

 

您可以在同一查询中混合UNION ALL和UNION DISTINCT。被混合的UNION类型按照这样的方式对待,即DISTINCT共用体覆盖位于其左边的所有ALL共用体。DISTINCT共用体可以使用UNION DISTINCT明确地生成,或使用UNION(后面不加DISTINCT或ALL关键词)隐含地生成。 

 

如果您想使用ORDER BY或LIMIT子句来对全部UNION结果进行分类或限制则应对单个地SELECT语句加圆括号,并把ORDER BY或LIMIT放到最后一个的后面。以下例子同时使用了这两个子句: 

(SELECT a FROM tbl_name WHERE a=10 ANDB=1)UNION(SELECT a FROM tbl_name WHERE a=11 AND B=2)ORDER BY a LIMIT 10;  

 

(SELECT a FROM tbl_name WHERE a=10 AND B=1)UNION(SELECTa FROM tbl_name WHERE a=11 AND B=2)ORDER BY a LIMIT 10;

 

这种ORDER BY不能使用包括表名称列引用(也就是,采用tbl_name.col_name格式的名称)。可以在第一个SELECT语句中提供一个列别名(第二个select语句提供列别名就不行),并在ORDER BY中参阅别名,或使用列位置在ORDER BY中参阅列。(首选采用别名,因为不建议使用列位置。) 

 

另外,如果带分类的一列有别名,则ORDER BY子句必须引用别名,而不能引用列名称。以下语句中的第一个语句必须运行,但是第二个会运行失败,出现在'order clause'中有未知列'a'的错误: 

(SELECT a AS b FROM t) UNION (SELECT...) ORDER BY b;

(SELECT a AS b FROM t) UNION (SELECT...) ORDER BY a;

To apply ORDER BY or LIMIT to anindividual SELECT, place the clause inside the parentheses that enclose theSELECT

为了对单个SELECT使用ORDERBY或LIMIT,应把子句放入圆括号中。圆括号包含了SELECT。

(SELECT a FROM tbl_name WHERE a=10 ANDB=1 ORDER BY a LIMIT 10)UNION(SELECT a FROM tbl_name WHERE a=11 AND B=2 ORDERBY a LIMIT 10); 

这样共取二十条数据

 

(SELECT VALUE from code order by VALUEdesc LIMIT 4) UNION ALL (SELECT VALUE from neeq_code order by VALUE desc LIMIT4) ORDER BY VALUE desc LIMIT 4 ; 取得4条数据,最后的ORDERBY VALUE desc LIMIT 4 是对整个结果在排序,并且取四条

 

二 实例扩展 

union可以对同一个表的两次查询联合起来.这样做的益处也非常明显, 比如在blog应用中, 可以利用一条sql语句实现置顶blog和普通blog的分页显示. 

(    

SELECT * FROM `blog`

WHERE top=1    

ORDER BY created DESC    

)    

UNION

(   

SELECT *    

FROM `blog`    

WHERE top = 0    

ORDER BY created DESC    

) LIMIT 2 , 3   

 

注:union要求联合的两个表所要查找的数据列要一样多(这里针对的是select *这种情况吧),如果一个表中没有另一个表的字段,可以用NULL代替。 

 

//union后表中数据的总条数

例:SELECT count(*) from (SELECT * from code UNION ALL SELECT* from neeq_code) as t;  如果去掉t就报错...

//union后表的按条件查询

SELECT t.* from (SELECT * from code UNION ALL SELECT* from neeq_code) as t where t.字段名=‘’ ;

 

//虚拟列

SELECT value,name,'2013'from code UNION ALL SELECT value,name,'2014' from neeq_code;

2013,2014是虚拟列,值是列的名字

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 use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to implement HTTP streaming using C++? How to implement HTTP streaming using C++? May 31, 2024 am 11:06 AM

How to implement HTTP streaming in C++? Create an SSL stream socket using Boost.Asio and the asiohttps client library. Connect to the server and send an HTTP request. Receive HTTP response headers and print them. Receives the HTTP response body and prints it.

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles