首页 > 开发 > 综合 > 正文

如何给表、列加注释

2024-07-21 02:38:51
字体:
来源:转载
供稿:网友

  系统环境:
  1、数据库: Oracle 8i R3 (8.1.7) for NT 企业版
  
  说明:
  
  SQL>comment on table 表 is '表注释';
  
  注释已创建。
  
  SQL>comment on column 表.列 is '列注释';
  
  注释已创建。
  
  SQL> select * from user_tab_comments where comments is not null;
  
  SQL> select * from user_col_comments where comments is not null;

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表