在某些情况下,临时表对于保留临时数据可能非常有用,临时表应该知道的最重要的事情是,当当前客户端会话终止时,它们将被删除。
创建临时表
在MySQL 3.23版中添加了临时表。如果您使用的MySQL版本早于3.23,则不能使用临时表,但可以使用堆表。
语法:
mysql> CREATE TEMPORARY TABLE table_name ( column_1, column_2, ..., table_constraints );
以下程序是一个示例,向您显示临时表的用法。
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 TEMPORARY TABLE table_name;
默认情况下,当数据库连接终止时,MySQL将删除所有临时表,如果需要删除它们,则可以通过发出 DROP TABLE 命令来删除它们,但是,在DROP TABLE语句中使用 TEMPORARY 关键字是一种很好的做法。
以下程序是删除临时表的示例-
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 'Learnfk.SalesSummary' doesn't exist
参考链接
https://www.learnfk.com/mysql/mysql-temporary-tables.html
标签:教程,NULL,name,0.00,MySQL,无涯,mysql,total,SalesSummary From: https://blog.51cto.com/u_14033984/8586825