达梦数据库查看某个表的字段类型有两种方法:
- 使用dm_list_fields
格式为:
resource dm_list_fields ( string $database_name, string $table_name [, resource $link_identifier[,string $owner_name r[,string $field_name]]])
参数 | 描述 |
database_name | [IN]数据库名 |
table_name | [IN]表名 |
link_identifier | [IN]连接标识符,不支持缺省默认连接,不可缺省 |
owner_name | 模式名 |
field_name | 指定列名 |
举例:
$ret = dm_list_fields("SYSTEM", "T1");
$col = dm_fetch_field($ret);
$fields = array();
while($col)
{
$fields[$col->name]=$col->type;
$col = dm_fetch_field($ret);
}
- 使用select
格式为:
select * from all_tab_columns where Table_Name='T_FILES' AND OWNER='SYSDBA';
其中Table_Name=表名,OWNER=用户名,应使用大写
评论
本文评论功能已关闭。