Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/sql/79.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sql Oracle在哪里存储表注释?_Sql_Oracle - Fatal编程技术网

Sql Oracle在哪里存储表注释?

Sql Oracle在哪里存储表注释?,sql,oracle,Sql,Oracle,以防问题不够清楚 我对大多数表格的评论如下: COMMENT ON TABLE owner.employee IS 'Stores the blabla'; 如果能在我的数据库中搜索,最好是查看表中的注释,比如2k表,这不是我的错。系统视图所有选项卡注释和用户选项卡注释包含表格注释,所有列注释和用户列注释。系统视图所有选项卡注释和用户列注释包含表格注释,所有列注释和用户列注释。您可以尝试此操作声明: -- All tables inside my user select table_nam

以防问题不够清楚

我对大多数表格的评论如下:

COMMENT ON TABLE owner.employee IS 'Stores the blabla';

如果能在我的数据库中搜索,最好是查看表中的注释,比如2k表,这不是我的错。

系统视图所有选项卡注释和用户选项卡注释包含表格注释,所有列注释和用户列注释。

系统视图所有选项卡注释和用户列注释包含表格注释,所有列注释和用户列注释。

您可以尝试此操作声明:

-- All tables inside my user  
select table_name, comments from user_tab_comments

-- All tables for all users:  
select table_name, comments from all_tab_comments   

您可以尝试以下语句:

-- All tables inside my user  
select table_name, comments from user_tab_comments

-- All tables for all users:  
select table_name, comments from all_tab_comments