怎么使用oracle comment命令

来源:爱站网时间:2022-12-27编辑:网友分享
本文来给朋友们分享下怎么使用oracle comment命令的内容,这里详细介绍了comment命令给表或字段的说明,如果你需要这篇文章,那就请看看技术小编所收集到的资料吧!

oracle中用comment on命令给表或字段加以说明,语法如下:

复制代码 代码如下:

COMMENT ON
  { TABLE [ schema. ]
    { table | view }
  | COLUMN [ schema. ]
    { table. | view. | materialized_view. } column
  | OPERATOR [ schema. ] operator
  | INDEXTYPE [ schema. ] indextype
  | MATERIALIZED VIEW materialized_view
  }
IS 'text' ;

用法如下:

1.对表的说明

复制代码 代码如下:

comment on table table_name is 'comments_on_tab_information';

2.对表中列的说明

复制代码 代码如下:

comment on column table.column_name is 'comments_on_col_information';

3.查看表的说明

复制代码 代码如下:

SQL> select * from user_tab_comments where TABLE_NAME='EMPLOYEES';
复制代码 代码如下:

TABLE_NAME                     TABLE_TYPE  COMMENTS
------------------------------ ----------- ----------
EMPLOYEES                      TABLE       员工表

 

SQL> select * from user_tab_comments where comments is not null;

TABLE_NAME                     TABLE_TYPE  COMMENTS
------------------------------ ----------- --------------------------
EMPLOYEES                      TABLE       员工表

4.查看表中列的说明

复制代码 代码如下:

SQL> select * from user_col_comments where TABLE_NAME='EMPLOYEES';
复制代码 代码如下:

TABLE_NAME                     COLUMN_NAME                    COMMENTS
------------------------------ ------------------------------ ------------
EMPLOYEES                      EMPLOYEE_ID                   
EMPLOYEES                      MANAGER_ID                    
EMPLOYEES                      FIRST_NAME                    
EMPLOYEES                      LAST_NAME                     
EMPLOYEES                      TITLE                         
EMPLOYEES                      SALARY                         员工薪水

 


SQL> select * from user_col_comments where comments is not null;

TABLE_NAME                     COLUMN_NAME                    COMMENTS
------------------------------ ------------------------------ -------------
EMPLOYEES                      SALARY                         员工薪水

5.我们也可以从下面这些视图中查看表级和列级说明:

复制代码 代码如下:

ALL_COL_COMMENTS
USER_COL_COMMENTS
ALL_TAB_COMMENTS
USER_TAB_COMMENTS

6.删除表级说明,也就是将其置为空

复制代码 代码如下:

SQL> comment on table employees is '';
Comment added

 

SQL> select * from user_tab_comments where TABLE_NAME='EMPLOYEES';

TABLE_NAME                     TABLE_TYPE  COMMENTS
------------------------------ ----------- -------------
EMPLOYEES                      TABLE     

7.删除列级说明,也是将其置为空

复制代码 代码如下:

SQL> comment on column employees.salary is '';
Comment added

 

SQL> select * from user_col_comments where TABLE_NAME='EMPLOYEES';

TABLE_NAME                     COLUMN_NAME                    COMMENTS
------------------------------ ------------------------------ -------------
EMPLOYEES                      EMPLOYEE_ID                   
EMPLOYEES                      MANAGER_ID                    
EMPLOYEES                      FIRST_NAME                    
EMPLOYEES                      LAST_NAME                     
EMPLOYEES                      TITLE                         
EMPLOYEES                      SALARY

怎么使用oracle comment命令内容不知道朋友们都看明白了吗,这些实例代码都可以放心拿来复制使用,想要了解更多的内容吗,来平台搜索就可以得到想要的文章了。

上一篇:oracle常用命令汇总

下一篇:如何配置使用rman命令

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载