如何找到MySQL的临时表的存储引擎(How to find MySQL temporary tab

2019-09-01 11:16发布

嗨,我用临时表工作,我想知道临时表的存储引擎(InnoDB的,MyISAM的....)

我使用下面的代码找到了,但它没有显示我的存储引擎。

$engine="SELECT ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA='test' AND `TABLE_NAME`='temporary_table'";
$export = mysql_query($engine, $connection) or die ("Sql error : ".mysql_error());
while ($row = mysql_fetch_array($export, MYSQL_BOTH)) {
    printf ("ENGINE: %s ---", $row[0]);
}

但是,同样的代码工作时,我试图找到我的数据库物理表的存储引擎?

任何帮助深表感谢。!! 谢谢。

Answer 1:

不幸的是 :

目前,[INFORMATION_SCHEMA] TABLES表中没有列出临时表。

我会建议分析的结果SHOW CREATE TABLE temporary_table;

只提取这个返回值的发动机:

$rset = mysql_query('SHOW CREATE TABLE temporary_table;')
$row = mysql_fetch_array($rset, MYSQL_BOTH);
preg_match('/ENGINE\=(?P<engine>\w+)/', $row[1], $matches);
echo $matches['engine'];


Answer 2:

你将要搜索的临时表存储information_schema.temporary_tables或全局临时表店information_schema.global_temporary_tables

尝试

`SELECT ENGINE FROM information_schema.temporary_tables WHERE TABLE_SCHEMA='test' AND `TABLE_NAME`='temporary_table'`


文章来源: How to find MySQL temporary table storage engine