您可以使用以下查询获取一些可能更有用的信息
SELECT table_name, column_name, data_type, character_maximum_length FROM information_schema.columns WHERE table_name='tablename';
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
pg_meta_data — 获取表的元数据
pg_meta_data() 返回 table_name
的表定义,作为数组。
版本 | 描述 |
---|---|
8.1.0 | connection 参数现在期望一个 PgSql\Connection 实例;之前期望一个 资源。 |
示例 #1 获取表元数据
<?php
$dbconn = pg_connect("dbname=publisher") or die("Could not connect");
$meta = pg_meta_data($dbconn, 'authors');
if (is_array($meta)) {
echo '<pre>';
var_dump($meta);
echo '</pre>';
}
?>
上面的例子将输出
array(3) { ["author"]=> array(5) { ["num"]=> int(1) ["type"]=> string(7) "varchar" ["len"]=> int(-1) ["not null"]=> bool(false) ["has default"]=> bool(false) } ["year"]=> array(5) { ["num"]=> int(2) ["type"]=> string(4) "int2" ["len"]=> int(2) ["not null"]=> bool(false) ["has default"]=> bool(false) } ["title"]=> array(5) { ["num"]=> int(3) ["type"]=> string(7) "varchar" ["len"]=> int(-1) ["not null"]=> bool(false) ["has default"]=> bool(false) } }
您可以使用以下查询获取一些可能更有用的信息
SELECT table_name, column_name, data_type, character_maximum_length FROM information_schema.columns WHERE table_name='tablename';
如果参数 $extended 不是 false
<?php
array (size=2)
'name' =>
array (size=11)
'num' => int 1
'type' => string 'varchar' (length=7)
'len' => int -1
'not null' => boolean false
'has default' => boolean true
'array dims' => int 0
'is enum' => boolean false
'is base' => boolean true
'is composite' => boolean false
'is pesudo' => boolean false
'description' => string '' (length=0)
'id' =>
array (size=11)
'num' => int 2
'type' => string 'int4' (length=4)
'len' => int 4
'not null' => boolean true
'has default' => boolean true
'array dims' => int 0
'is enum' => boolean false
'is base' => boolean true
'is composite' => boolean false
'is pesudo' => boolean false
'description' => string '' (length=0)
?>
要指定模式和表名,请像往常一样使用 PostgreSQL 和此扩展中的其他函数使用 "schemaname.tablename" 形式。当然,如果没有前缀,将使用默认模式搜索路径。
<?php
$meta = pg_meta_data($dbconn, 'foo.bar'); // 模式 "foo" 中的表 "bar"
if (is_array($meta)) {
var_dump($meta);
}
?>
此函数似乎对表名区分大小写 (php-4.3.1)
返回的数组结构如下
['字段名称'] => 数组
(
['num'] => 从 1 开始的字段编号
['type'] => 数据类型,例如 varchar、int4
['len'] => 字段的内部存储大小。-1 表示可变
['not null'] => 布尔值
['has default'] => 布尔值
)
......
对于可变大小的数据类型 (varchar、text 等)
您可以从系统表 pg_attribute.atttypmod -4 获取最大数据长度
例如
select attnum, attname , atttypmod -4 as field_len
from pg_attribute, pg_class
where relname='$tablename'
and attrelid=relfilenode
and attnum>=1
当查询临时表的元数据时,即使建立了新的连接,临时表不再存在,元数据似乎仍然存在。
例如,如果您创建连接和临时表,如下所示
$dbconn1 = pg_connect('blah blah', , PGSQL_CONNECT_FORCE_NEW);
pg_exec($dbconn1,'create temp table foo as select 'foo' as namecol, 'bar' as valcol');
然后创建一个新的连接
$dbconn2 = pg_connect('blah blah', , PGSQL_CONNECT_FORCE_NEW);
并查询此新连接中表 'foo' 的元数据,它将报告有关此表的事实
pg_meta_data($dbconn2,'foo');
"'Array ( [foo] => Array ( [num] => 1 [type] => varchar... "
但是,尝试删除此表
pg_exec($dbconn,'drop table foo');
抛出错误
pg_exec(): Query failed: ERROR: table "foo" does not exist in ...
内置函数不支持选择模式。如果您需要模式支持并且不想更改您的 SEARCH_PATH,则以下函数可以提供支持
function meta_data($table, $schema = 'public')
{
$result = pg_query_params("SELECT a.attname, a.attnum, t.typname, a.attlen, a.attnotNULL, a.atthasdef, a.attndims
FROM pg_class as c, pg_attribute a, pg_type t, pg_namespace n
WHERE a.attnum > 0
AND a.attrelid = c.oid
AND c.relname = $1
AND a.atttypid = t.oid
AND n.oid = c.relnamespace
AND n.nspname = $2
ORDER BY a.attnum", array($table, $schema));
$fields = array();
while($row = pg_fetch_array()) {
$fields['attname'] = $row;
}
return $fields;
}