MySQL - 临时表


在某些情况下,临时表对于保存临时数据非常有用。对于临时表,应该了解的最重要的一点是,当当前客户端会话终止时,它们将被删除。

什么是临时表?

MySQL 3.23 版本中添加了临时表。如果您使用的 MySQL 版本低于 3.23,则无法使用临时表,但可以使用堆表

如前所述,临时表仅在会话处于活动状态时才会持续存在。如果您在 PHP 脚本中运行代码,则当脚本执行完成时,临时表将自动销毁。如果您通过MySQL客户端程序连接到MySQL数据库服务器,那么临时表将一直存在,直到您关闭客户端或手动销毁该表。

例子

以下程序是一个示例,向您展示临时表的用法。可以使用mysql_query()函数在 PHP 脚本中使用相同的代码。

mysql> CREATE TEMPORARY TABLE SalesSummary (
   -> product_name VARCHAR(50) NOT NULL
   -> , total_sales DECIMAL(12,2) NOT NULL DEFAULT 0.00
   -> , avg_unit_price DECIMAL(7,2) NOT NULL DEFAULT 0.00
   -> , total_units_sold INT UNSIGNED NOT NULL DEFAULT 0
);
Query OK, 0 rows affected (0.00 sec)

mysql> INSERT INTO SalesSummary
   -> (product_name, total_sales, avg_unit_price, total_units_sold)
   -> VALUES
   -> ('cucumber', 100.25, 90, 2);

mysql> SELECT * FROM SalesSummary;
+--------------+-------------+----------------+------------------+
| product_name | total_sales | avg_unit_price | total_units_sold |
+--------------+-------------+----------------+------------------+
|   cucumber   |   100.25    |     90.00      |         2        |
+--------------+-------------+----------------+------------------+
1 row in set (0.00 sec)

当您发出SHOW TABLES命令时,您的临时表将不会在列表中列出。现在,如果您注销 MySQL 会话,然后发出SELECT命令,那么您将发现数据库中没有可用数据。甚至你的临时表也不会存在。

删除临时表

默认情况下,当数据库连接终止时,MySQL 会删除所有临时表。不过,如果您想在中间删除它们,则可以通过发出DROP TABLE命令来实现。

以下程序是删除临时表的示例 -

mysql> CREATE TEMPORARY TABLE SalesSummary (
   -> product_name VARCHAR(50) NOT NULL
   -> , total_sales DECIMAL(12,2) NOT NULL DEFAULT 0.00
   -> , avg_unit_price DECIMAL(7,2) NOT NULL DEFAULT 0.00
   -> , total_units_sold INT UNSIGNED NOT NULL DEFAULT 0
);
Query OK, 0 rows affected (0.00 sec)

mysql> INSERT INTO SalesSummary
   -> (product_name, total_sales, avg_unit_price, total_units_sold)
   -> VALUES
   -> ('cucumber', 100.25, 90, 2);

mysql> SELECT * FROM SalesSummary;
+--------------+-------------+----------------+------------------+
| product_name | total_sales | avg_unit_price | total_units_sold |
+--------------+-------------+----------------+------------------+
|   cucumber   |   100.25    |     90.00      |         2        |
+--------------+-------------+----------------+------------------+
1 row in set (0.00 sec)
mysql> DROP TABLE SalesSummary;
mysql>  SELECT * FROM SalesSummary;
ERROR 1146: Table 'TUTORIALS.SalesSummary' doesn't exist