否-对于显式定义的临时表,不会自动定义索引。您需要在创建表时或之后使用 ALTER TABLE .. . 你可以和我核对一下 SHOW CREATE TABLE my_temptable . 请尝试以下脚本:
drop table if exists my_persisted_table;
create table my_persisted_table (
id int auto_increment primary key,
col varchar(50)
);
insert into my_persisted_table(col) values ('a'), ('b');
drop temporary table if exists my_temptable;
create temporary table my_temptable as
select * from my_persisted_table;
show create table my_temptable;
alter table my_temptable add index (id);
show create table my_temptable;
3条答案
按热度按时间tzxcd3kk1#
否-对于显式定义的临时表,不会自动定义索引。您需要在创建表时或之后使用
ALTER TABLE ..
.你可以和我核对一下
SHOW CREATE TABLE my_temptable
.请尝试以下脚本:
第一个
SHOW CREATE
语句将不显示索引:使用创建索引之后
ALTER TABLE
我们可以看到第二个SHOW CREATE
声明:演示:http://rextester.com/jzqcp29681
hc8w905p2#
此语法也适用于:
也就是说,你可以有额外的
CREATE TABLE
条款从一开始就到位。如果SELECT
正在按主键顺序将行传递到innodb表:ha5z0ras3#
临时表与数据库(模式)的关系非常松散。删除数据库不会自动删除在该数据库中创建的任何临时表。此外,如果在CREATETABLE语句中用数据库名称限定表名称,则可以在不存在的数据库中创建临时表。在这种情况下,表的所有后续引用都必须使用数据库名称限定。
https://dev.mysql.com/doc/refman/5.7/en/create-temporary-table.html