在mysql要顯示指定數據庫中所有表名我們有一個命令SHOW TABLES就可以實現了,下面我來看看關於SHOW TABLES是如何獲取mysql數據庫中所有表名的。
直接cmd命令模式下使用
代碼如下 復制代碼
show databases;
show tables from db_name;
show columns from table_name from db_name;
show index from talbe_name [from db_name];
show status;
show variables;
show [full] processlist;
show table status [from db_name];
show grants for user;
結合php mysql數據庫使用
$server = 'localhost';
$user = 'root';
$pass = '';
$dbname = 'dayanmei_com';
$conn = mysql_connect($server,$user,$pass);
if(!$conn) die("數據庫系統連接失敗!");
mysql_select_db($dbname) or die("數據庫連接失敗!");
$result = mysql_query("SHOW TABLES");
while($row = mysql_fetch_array($result))
{
echo $row[0]."";
mysql_free_result($result);
}
注意php中列表mysql中所有表名的函數mysql_list_tables,已經刪除了,建議不要使用該函數列表mysql數據表