我可以像这样选择数据库中的所有表
$tables = array();
$result = mysql_query('SHOW TABLES');
while($row = mysql_fetch_row($result))
{
$tables[] = $row[0];
}
以下代码填充$ return变量,该变量可用于备份数据库。
foreach($tables as $table)
{
$result = mysql_query('SELECT * FROM '.$table);
$num_fields = mysql_num_fields($result);
$return.= 'DROP TABLE IF EXISTS '.$table.';';
$row2 = mysql_fetch_row(mysql_query('SHOW CREATE TABLE '.$table));
$return.= "\n\n".$row2[1].";\n\n";
for ($i = 0; $i < $num_fields; $i++)
{
while($row = mysql_fetch_row($result))
{
$return.= 'INSERT INTO '.$table.' VALUES(';
for($j=0; $j<$num_fields; $j++)
{
$row[$j] = addslashes($row[$j]);
$row[$j] = ereg_replace("\n","\\n",$row[$j]);
if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
if ($j<($num_fields-1)) { $return.= ','; }
}
$return.= ");\n";
}
}
$return.="\n\n\n";
}
我的数据库有两个mysql视图。上面的代码生成&#34; INSERT INTO ....&#34;字符串甚至是我需要避免的mysql视图。 所以在开始'for循环'之前&#39;生成&#34; INSERT INTO ..&#34;我需要检查$ table是否实际上是一个mysql表或视图。 如何识别名称是指mysql表还是mysql视图?
答案 0 :(得分:20)
SHOW [FULL] TABLES
支持FULL
修饰符,以便SHOW FULL TABLES
显示第二个输出列。对于表格,第二列的值为BASE TABLE
,对于视图,值为VIEW
。
答案 1 :(得分:6)
您可以使用SHOW FULL TABLES
命令添加第二列,显示关系是BASE TABLE
还是VIEW
。
答案 2 :(得分:2)