程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php查找mysql數據庫中的所有表名

php查找mysql數據庫中的所有表名

編輯:關於PHP編程

在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數據表

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved