Create a temporary table in a SELECT statement wit

2019-01-01 09:53发布

Is it possible to create a temporary (session only) table from a select statement without using a create table statement and specifying each column type? I know derived tables are capable of this, but those are super-temporary (statement-only) and I want to re-use.

It would save time if I did not have to write up a create table command and keep the column list and type list matched up.

5条回答
浪荡孟婆
2楼-- · 2019-01-01 10:01

Use this syntax:

CREATE TEMPORARY TABLE t1 (select * from t2);
查看更多
无与为乐者.
3楼-- · 2019-01-01 10:04

Engine must be before select:

CREATE TEMPORARY TABLE temp1 ENGINE=MEMORY 
as (select * from table1)
查看更多
余生请多指教
4楼-- · 2019-01-01 10:10

In addition to psparrow's answer if you need to add an index to your temporary table do:

CREATE TEMPORARY TABLE IF NOT EXISTS 
  temp_table ( INDEX(col_2) ) 
ENGINE=MyISAM 
AS (
  SELECT col_1, coll_2, coll_3
  FROM mytable
)

It also works with PRIMARY KEY

查看更多
不再属于我。
5楼-- · 2019-01-01 10:26
CREATE TEMPORARY TABLE IF NOT EXISTS table2 AS (SELECT * FROM table1)

From the manual found at http://dev.mysql.com/doc/refman/5.7/en/create-table.html

You can use the TEMPORARY keyword when creating a table. A TEMPORARY table is visible only to the current session, and is dropped automatically when the session is closed. This means that two different sessions can use the same temporary table name without conflicting with each other or with an existing non-TEMPORARY table of the same name. (The existing table is hidden until the temporary table is dropped.) To create temporary tables, you must have the CREATE TEMPORARY TABLES privilege.

查看更多
弹指情弦暗扣
6楼-- · 2019-01-01 10:26

ENGINE=MEMORY is not supported when table contains BLOB/TEXT columns

查看更多
登录 后发表回答