mysql 有一個默認的數(shù)據(jù)庫,叫做information_schema
專注于為中小企業(yè)提供做網(wǎng)站、網(wǎng)站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)海曙免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了近千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
連上這個庫,執(zhí)行下面的語句(你自己那可能的改下下面的sql)
//table_schema 是你的數(shù)據(jù)庫名字 table_name是表名
select * from tables where table_schema = 'storage' and table_name like 'product%'
你看看庫中這個表結構就明白了,呵呵
mysql
有一個默認的數(shù)據(jù)庫,叫做information_schema
連上這個庫,執(zhí)行下面的
語句
(你自己那可能的改下下面的sql)
//table_schema
是你的數(shù)據(jù)庫名字
table_name是表名
select
*
from
tables
where
table_schema
=
'storage'
and
table_name
like
'product%'
你看看庫中這個表
結構
就明白了,呵呵
$sql="show tables";
$r=mysql_query($sql);
$data=mysql_fetch_array($r);
這樣就可以獲得數(shù)據(jù)庫中的表信息了
//PHP實現(xiàn)
?php
$connect = mysql_connect("localhost","root","123456");
$result = mysql_query("SHOW TABLES",$connect);
$tables = array();
while($table = mysql_fetch_row($result)) {
$table = array_pop($table);
if(is_numeric($table)) $tables[$table] = $table;
}
krsort($tables);
var_dump(array_shift($tables));
//End_php