php查询数据库表名,太阳出来了后面是什么句子
php5以上版本,怎样查找数据库中表名,以及表名中有哪些字段名?
mysql_list_tables 在php5应该支持的,再说,向下兼容的啊帮助文档:例 1397. mysql_list_tables() 例子/b?php
创新互联主要从事网站制作、成都网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务丹徒,十多年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108
$dbname = 'mysql_dbname';
if (!mysql_connect('mysql_host', 'mysql_user', 'mysql_password')) {
print 'Could not connect to mysql';
exit;
}
$result = mysql_list_tables($dbname);
if (!$result) {
print "DB Error, could not list tables\n";
print 'MySQL Error: ' . mysql_error();
exit;
}
while ($row = mysql_fetch_row($result)) {
print "Table: $row[0]\n";
}
mysql_free_result($result);
?
PHP+MYSQL 怎样按条件查询数据库里表的名称?
mysql
有一个默认的数据库,叫做information_schema
连上这个库,执行下面的语句(你自己那可能的改下下面的sql)
//table_schema
是你的数据库名字
table_name是表名
select
*
from
tables
where
table_schema
=
'storage'
and
table_name
like
'product%'
你看看库中这个表结构就明白了,呵呵
phppdo连接的数据库怎么获取表名
$dbh是new PDO()
$dbh-exec("show tables");--获取所有表#
$dbh-exec("desc 表名");--查询表结构
网页名称:php查询数据库表名,太阳出来了后面是什么句子
URL网址:http://scyanting.com/article/hoosij.html