15:13:46 SQL> create table t1(a int);表已创建。已用时间:  00: 00: 00.16
15:13:51 SQL> comment on column t1.a is 'aa';注释已创建。已用时间:  00: 00: 00.31

解决方案 »

  1.   

    谢谢楼上,创建我会而且试过
    但是怎么fetch就不太清楚了。
      

  2.   

    select * from user_col_comments where table_name=.. and column_name=..;
      

  3.   

    comment on table testb is  'aaaa';
    comment on column testb.id is 'bbbb';
      

  4.   

    谢谢各位,how to fetch table's description?select * from user_col_comments where table_name=.. and column_name=..;
    seems it is for field