MySQL-php如何获取数据库表的注释?

发布于 2016-10-25 20:30:30 字数 28 浏览 1363 评论 4

包括mysql、oracle等各种数据库的

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

夜无邪 2017-10-27 02:14:44

oracle这样获取:

//获得表注释
select * from user_table_comments where table_name='table_name';

//获取列注释
select * from user_col_comments where table_name='table_name';

清晨说ぺ晚安 2017-09-04 19:54:54

我分享postgreSQL的获取注释方法吧:

 select
column_name,
data_type,
is_nullable,
description.description as comment
from
information_schema.columns columns
left join pg_class class on (columns.table_name = class.relname)
left join pg_description description on (class.oid = description.objoid)
left join pg_attribute attrib on (class.oid = attrib.attrelid and columns.column_name = attrib.attname and attrib.attnum = description.objsubid)
where
table_name=’{$tableName}’
group by
ordinal_position, column_name, data_type, is_nullable, description.description

夜无邪 2017-07-22 12:00:38

1、取得表注释
Select table_name 表名,TABLE_COMMENT 表注释 from INFORMATION_SCHEMA.TABLES Where table_schema = 'testhuicard' # #数据库名
AND table_name LIKE 'companies' # #表名
参考http://dev.mysql.com/doc/refman/5.1/zh/information-schema.html.
mysql手册:23.1. INFORMATION_SCHEMA表

2、取字段注释
Select COLUMN_NAME 列名, DATA_TYPE 字段类型, COLUMN_COMMENT 字段注释
from INFORMATION_SCHEMA.COLUMNS
Where table_name = 'companies' # #表名
AND table_schema = 'testhuicard' # #数据库名
AND column_name LIKE 'c_name' # #字段名

3、取得某数据库下所有表的注释
$tt = mysql_query("show table status;");
$table_info=array();
while($re = mysql_fetch_array($tt,MYSQL_ASSOC)){
//$re["Comment"],这个就是表的注释
$table_info[] = $re;
} ......

瑾兮 2016-12-27 15:21:30

mysql的

select TABLE_COMMENT from information_schema.tables where table_name="temp";
+-----------------------+
| TABLE_COMMENT |
+-----------------------+
| 临时表 |
+-----------------------+
1 row in set (0.00 sec)

是要这样的吗

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文