您的位置:首页 > 数据库 > MySQL

MySQL Temporary Table

2015-06-12 00:22 567 查看

Summary: in this tutorial, we will discuss about MySQL temporary table and show you how to create, use and drop temporary tables.

Introduction to MySQL temporary table

In MySQL, a temporary table is a special type of table that allows you to store a temporary result set, which you can reuse several times in a single session. A temporary table is very handy when it is impossible or expensive to query data that requires a single SELECTstatement with JOIN clauses. You often use temporary tables in stored procedures to store immediate result sets for the subsequent uses.

MySQL temporary tables have some additional features:

A temporary table is created by using
CREATETEMPORARYTABLE
statement. Notice that the
TEMPORARY
keyword is added between
CREATE
and
TABLE
keywords.

MySQL drops the temporary table automatically when the session ends or connection is terminated. Of course, you can use the DROP TABLE statement to drop a temporary table explicitly when you are no longer use it.

A temporary table is only available and accessible by the client who creates the table.

Different clients can create a temporary table with the same name without causing errors because only the client who creates a temporary table can see it. However, in the same session, two temporary tables cannot have the same name.

A temporary table can have the same name as an existing table in a database. For example, if you create a temporary table named
employees
in the sample database, the existing
employees
table becomes inaccessible. Every query you issue against the
employees
table refers to the
employees
temporary table. When you remove the
employees
temporary table, the permanent
employees
table is available and accessible again. Though this is allowed however it is not recommended to create a temporary table whose name is same as a name of a permanent table because it may lead to a confusion. For example, in case the connection to the MySQL database server is lost and you reconnect to the server automatically, you cannot differentiate between the temporary table and the permanent table. In the worst case, you may issue a
DROP TABLE
statement to remove the permanent table instead of the temporary table, which is not expected.

Create MySQL temporary table

Like the CREATETABLEstatement, MySQL provides many options to create a temporary table. To create a temporary table, you just add the
TEMPORARY
keyword to the
CREATETABLE
statement.

For example, the following statement creates a top 10 customers by revenue temporary table based on the result set of a
SELECT
statement:

CREATETEMPORARYTABLEtop10customers
SELECTp.customerNumber,
c.customerName,
FORMAT(SUM(p.amount),2) total
FROM payments p
INNER JOIN customers c ON c.customerNumber = p.customerNumber
GROUP BY p.customerNumber
ORDER BY total DESC
LIMIT 10


  

Now, you can query data from the
top10customers
temporary table as from a permanent table:

1

SELECT* FROM top10customers



Drop MySQL temporary table

You can use the DROP TABLEstatement to remove temporary tables however it is good practice to use the
DROP TEMPORARYTABLE
statement instead. Because the
DROP TEMPORARYTABLE
removes only temporary tables, not the permanent tables. In addition, the
DROP TEMPORARYTABLE
statement helps you avoid the mistake of removing a permanent table when you name your temporary table the same as the name of the permanent table.

For example, to remove the
top10customers
temporary table, you use the following statement:

1

DROP TEMPORARYTABLEtop10customers

Notice that if you try to remove a permanent table with the
DROP TEMPORARYTABLE
statement, you will get an error message saying that the table you are trying drop is unknown.

Note if you develop an application that uses a connection pooling or persistent connections, it is not guaranteed that the temporary tables are removed automatically when your application is terminated. Because the database connection that the application used may be still open and is placed in a connection pool for other clients to reuse it. This means you should always remove the temporary tables that you created whenever you are done with them.

In this tutorial, you have learned about MySQL temporary table and its characteristic. We also gave you an example of how to create, use and drop a temporary table.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: