oracle comment命令用法示例分享建站知识
导读:1建站知识oracle comment on命令说明及用法示例,大家参考使用吧建设网站seo网站优化培训。
oracle中用comment on命令给表或字段加以说明,语法如下:
复制代码 代码如下:
COMMENT ON { TABLE [ schema. ] { table | view } | seo网站优化软件COLUMN [ schema. ] { table. | view. | materialized_view. } column | OPERATOR [ schema. ] operator | INDEXTYPE [ schema. ] indextype | MATERIALIZED VIEW materialized_view }IS 'text' ;
用网站seo优化诊断工具法如下:
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  网站推广优化seo; LAST_NAME EMPLOYEES TITLE EMPLOYEES SALARY 员工薪水
声明: 本文由我的SEOUC技术文章主页发布于:2023-05-22 ,文章oracle comment命令用法示例分享建站知识主要讲述示例,命令,oracle comment命令用法示例分享建站网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_5360.html